* {
  box-sizing: border-box;
  font-family: "Press Start 2P", system-ui;
  font-size: 12px;
}

#pressEnter {
  animation: blink 1s step-start infinite;
  color: red;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

#countDown {
  position: absolute;
  color: RGB(225, 106, 104);
  display: flex;
  top: 300px;
  right: 0;
  bottom: 0;
  left: 512px;
  justify-content: center;
  font-size: 50px;
  font-weight: bold;
  -webkit-text-stroke: 1px black;
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeIn 1s linear;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes blinkTwice {
  0%,
  20% {
    opacity: 1;
  }
  30%,
  50% {
    opacity: 0;
  }
  60%,
  80% {
    opacity: 1;
  }
  90%,
  100% {
    opacity: 0;
  }
}

#controls {
  width: 1024px;
}

#winCondition {
  background-color: RGB(222, 156, 67);
  width: 1024px;
  border-radius: 20px;
  padding: 10px;
  color: white;
  text-align: center;
}