html, body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}

.main-container {
  width: 100%;
  max-width: 600px;
  height: 600px;
  max-height: 100%;
  margin: auto;
  margin-top: calc(5vh);
}
.main-container h1 {
  margin: auto;
  text-align: center;
  font-size: 60px;
  opacity: 1;
  transition: opacity 1s ease-in;
}
.main-container h1::after {
  content: "_";
  animation: 1s infinite blink;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main-container h1.hidden {
  opacity: 0;
}
.main-container .stick {
  outline: solid #000 2px;
  height: 0px;
  width: 150px;
  position: relative;
}

#stick-area {
  width: 100%;
  height: 100%;
  display: block;
}
#stick-area.hidden {
  display: none;
}

#infobox {
  background-color: #fefefe;
  box-shadow: 0 5px 5px 5px #ddd;
  margin-top: 3em;
  padding: 3em;
  opacity: 0;
  transition: opacity 1s ease-in;
}
@media screen and (max-width: 768px) {
  #infobox {
    margin-top: 10px;
    padding: 1em;
    box-shadow: none;
  }
}
#infobox.visible {
  opacity: 1;
  position: static;
}
#infobox h2 {
  text-align: center;
  margin-top: 0;
}

.info-buttons {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .info-buttons {
    flex-wrap: wrap;
  }
}
.info-buttons button {
  font-size: 1.2em;
  flex: 1 0 33%;
  margin: 10px;
}
@media screen and (max-width: 768px) {
  .info-buttons button {
    flex: 1 0 100%;
  }
}
@media screen and (max-width: 768px) {
  .info-buttons button.spinaway {
    animation: spin 1s ease-in;
  }
}
.info-buttons a {
  flex: 1 0 33%;
}

#guess-console {
  margin: 2em auto;
  position: fixed;
  top: 10em;
  width: 100%;
  max-width: 600px;
  display: none;
}
@media screen and (max-width: 768px) {
  #guess-console {
    top: 5em;
  }
}
#guess-console.visible {
  display: block;
}
#guess-console h2 {
  text-align: center;
  margin-bottom: 2em;
}

#new-round {
  margin: auto;
  display: block;
  font-size: 2em;
  font-weight: 700;
}
#new-round.syckening {
  animation: cyan-sycks 0.7s alternate infinite ease-in;
  animation-delay: 3s;
}

.number-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.number-buttons button {
  font-size: 2em;
  font-weight: 700;
  width: 2em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .number-buttons button {
    margin: 10px;
  }
}

#right-answer {
  height: 2em;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(0.5);
  }
}
@keyframes cyan-sycks {
  0% {
    box-shadow: aqua 0 0 0px;
  }
  100% {
    box-shadow: aqua 0 0 5px;
  }
}
.fadein {
  animation: fadein 3s ease-in;
}

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