:root {
  --blue: #244855;
  --red: #E64833;
  --brown: #874F41;
  --lightblue: #90AEAD;
  --beige: #FBE9D0;
}

body {
  padding: 0;
  margin: 10px;
  background: radial-gradient(circle, #FBE9D0, #F8D4B4);
  font-family: "Roboto Mono", monospace;
  height: calc(100vh - 20px);
  position: relative;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pressStart.shown {
  font-size: 30px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  user-select: none;
  transform: translate(-50%, -50%);
  animation: opacityCycle 3s infinite;
  display: block;
}

.pressStart {
  display: none;
}

@keyframes opacityCycle {
  0% {
    opacity: 1;
    /* Fully visible */
  }

  50% {
    opacity: 0.2;
    /* Almost invisible */
  }

  100% {
    opacity: 1;
    /* Back to fully visible */
  }
}

.guessContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 25vh;
  margin-top: 15px;
}

.guessContainer.findit {
  flex-direction: row;
  flex-wrap: wrap;
  width: 50vw;
  margin-top: 0px;
}

.guessContainer span {
  font-size: 40px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4)
}

.correctSquares {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 90%;
  justify-content: center;
}

.correctSquares img{
  height: 60px;
}

@media only screen and (max-width: 1512px) {
  .correctSquares img{
    width: 50px;
    height: 50px;
  }

  .correctSquares {
    width: 100%;
    gap: 4px;
  }

  .misc.absolute {
    position: absolute;
    left: 60%;
    top: 20%;
  }

  .guessContainer.findit {
    width: 95vw;
  }
}

.misc {
  display: flex;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.misc span,
.findit_title {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
}

.endgame {
  background-color: transparent;
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: .2s;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  position: relative;
}

.endgame:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.endgame span {
  font-size: 45px;
}

.answer-options {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.answer-options div {
  border: 3px solid rgba(0, 0, 0, .2);
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, .3);
  border-radius: 10px;
  font-weight: 500;
  padding: 10px 30px;
  user-select: none;
  cursor: pointer;
  transform: scale(1);
  transition: .2s;
}

.answer-options div:hover {
  transform: scale(1.04);
}

.guessContainer img.selectable {
  cursor: pointer;
  transform: scale(1);
  transition: .25s;
}

.guessContainer img.selectable:hover {
  transform: scale(1.05);
}