.flicker-in {
  animation: flicker-in 1s linear both;
}

.vibrate:hover {
  animation: vibrate 0.3s linear infinite both;
}

.heartbeat {
  animation: heartbeat 2s linear infinite both;
}

.bounce-in {
  animation: bounce-in 1.1s;
}

@keyframes flicker-in {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  10.1% {
    opacity: 1;
  }
  10.2% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  20.1% {
    opacity: 1;
  }
  20.6% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  30.1% {
    opacity: 1;
  }
  30.5% {
    opacity: 1;
  }
  30.6% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  45.1% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  55.1% {
    opacity: 0;
  }
  57% {
    opacity: 0;
  }
  57.1% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  60.1% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  65.1% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  75.1% {
    opacity: 0;
  }
  77% {
    opacity: 0;
  }
  77.1% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  85.1% {
    opacity: 0;
  }
  86% {
    opacity: 0;
  }
  86.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in {
  0% {
    transform: translateY(500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(65px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.markers {
  width: 60px;
}

.settings img {
  width: 30px;
  transition: transform 2.5s;
}
.settings img:hover {
  transform: rotate(360deg);
}

#start {
  cursor: not-allowed;
}
#start img {
  margin-top: 1.5rem;
  width: 100px;
  background-image: linear-gradient(to right, rgba(67, 67, 67, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  box-shadow: 0 0 5px 2.5px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

aside button img {
  width: 50px;
  transition: transform 0.25s;
}
aside button img:hover {
  transform: scale(1.1);
}

.inactive {
  cursor: not-allowed;
}
.inactive img:hover {
  transform: none;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Orbitron", sans-serif;
  color: rgb(230, 230, 230);
  background-image: linear-gradient(to right, #434343 0%, #000 100%);
}

header {
  padding: 2rem 5% 1rem 5%;
  text-align: center;
}

main {
  display: none;
}

.background {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}

.goldenrod {
  color: #DAA520;
}

.overlay {
  position: fixed;
  top: 20%;
  left: 5%;
  padding: 1rem;
  background: #C9CCD3 linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: #434343;
  background-blend-mode: lighten;
  border-radius: 10px;
  box-shadow: 0 0 10px 2.5px rgba(255, 255, 255, 0.5);
  display: none;
  z-index: 2;
}
@media (min-width: 48rem) {
  .overlay {
    left: calc(50% - 20rem);
    width: 40rem;
    backdrop-filter: blur(25px) saturate(200%);
  }
}

#backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2.5px) saturate(200%);
  z-index: 0;
  display: none;
}

#modal {
  text-align: center;
}
#modal h2 {
  margin: 2.5rem;
}

.input {
  margin: 0.5rem 0;
}
.input label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.input input {
  font: inherit;
  text-align: center;
  border: 1px solid #434343;
  border-radius: 10px 0 15px 0;
  width: 15rem;
  padding: 0.5rem;
}
.input input:focus {
  outline: none;
  background-color: #434343;
  border: 1px solid rgb(230, 230, 230);
  color: rgb(230, 230, 230);
}

#configuration {
  width: 90%;
  max-width: 40rem;
  margin: 3rem auto;
  text-align: center;
  z-index: -5;
}
#configuration ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#configuration ol li {
  margin: 1rem;
  padding: 1rem;
  width: 50%;
  background-image: linear-gradient(to right, rgba(67, 67, 67, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  box-shadow: 0 0 5px 2.5px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  overflow-wrap: break-word;
}
#configuration ol li h2 {
  font-size: 1rem;
  margin: 0.5rem 0;
}
#configuration ol li h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

#game {
  text-align: center;
  margin: 2rem 0 5rem 0;
  display: none;
}

#game-over {
  width: 90%;
  max-width: 40rem;
  margin: auto;
  padding: 1rem 2rem;
  background: #C9CCD3 linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow: 0 0 5px 2.5px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: #434343;
  display: none;
}
#game-over h2 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

#result-draw {
  display: none;
}

#result-win {
  display: none;
}

#active-player {
  font-weight: bold;
}

#game-board {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 6rem);
  grid-template-rows: repeat(3, 6rem);
  justify-content: center;
  gap: 0.5rem;
}
#game-board li {
  background-image: linear-gradient(to top, #E6E9F0 0%, #EEF1F5 100%);
  box-shadow: 0 0 2.5px 2.5px rgba(218, 165, 32, 0.6666666667);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#game-board li:hover {
  box-shadow: 0 0 2.5px 2.5px #DAA520;
}
#game-board li.disabled {
  cursor: default;
  background-image: linear-gradient(to top, rgba(230, 233, 240, 0.9333333333) 0%, rgba(238, 241, 245, 0.9333333333) 100%);
  box-shadow: none;
}

/*# sourceMappingURL=index.css.map */
