@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@500&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Maven Pro", sans-serif;
}

body {
  background-color: #393939;
  color: white;
}

button {
  height: 30px;
  margin-top: 20px;
  padding: 3px 7px;
  font-size: 17px;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 8px;
  background-color: #fb542b;
  -webkit-box-shadow: 0 5px #999;
          box-shadow: 0 5px #999;
}

button:hover {
  background-color: #df4d29;
}

button:active {
  background-color: #df4d29;
  -webkit-box-shadow: 0 1px #999;
          box-shadow: 0 1px #999;
  -webkit-transform: translate(0, 4px);
          transform: translate(0, 4px);
}

#container {
  position: relative;
}

#container #board {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}

#container #board > div {
  border: 4px #7e7e7e solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#container #board > div.clickable {
  cursor: pointer;
}

#container #board > div .ball {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#container #board > div.blinking .ball {
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes blink {
  0% {
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
  }
  100% {
    -webkit-filter: opacity(50%);
            filter: opacity(50%);
  }
}

@keyframes blink {
  0% {
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
  }
  100% {
    -webkit-filter: opacity(50%);
            filter: opacity(50%);
  }
}

#container #board > div.pathing {
  background-color: #48b8b8;
}

#container #board > div.end-pathing {
  background-color: grey;
}

#container .next-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

#container .next-container .ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.end-game-container {
  width: 500px;
  height: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 10px solid #fb542b;
  border-radius: 20px;
  background-color: #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}

.end-game-container .end-game-h1 {
  color: #52c6ff;
  font-size: 50px;
  margin: 0;
  padding: 0;
}

.end-game-container .end-game-p {
  color: #52c6ff;
  font-size: 20px;
  margin: 0;
  padding: 0;
}

.end-game-container button {
  width: 250px;
}
/*# sourceMappingURL=style.css.map */