body {
  background-image: linear-gradient(147deg, #000000 0%, #272727 74%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#maze {
  position: fixed;
}

.shadow {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.2),
    0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.05);
}

#loader {
  height: 10px;
  border-radius: 10px;
  background-color: #00000078;
  width: 600px;
  position: fixed;
  top: 93%;
}

.cell {
  position: absolute;
  background-color: transparent;
  border: 1px solid transparent;
}

.top {
  border-top: 1px solid black;
}

.bottom {
  border-bottom: 1px solid black;
}

.right {
  border-right: 1px solid black;
}

.left {
  border-left: 1px solid black;
}
