@import url('https://fonts.googleapis.com/css2?family=Rochester&display=swap');
h1 {
    font-family: "Rochester", cursive;
    font-weight: 400;
    font-style: italic;
    font-size: xxx-large;
}
body {
    min-height: 100vh;
    background-color: black;
    margin: 0;
    color: white;
}
#loaderContainer {
    display: flex;
    justify-content: center;
}
#puzzleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    margin-bottom: 0;

}
.hiding {
    opacity: 0;
    transition: opacity 1s ease;
}
.revealed {
    opacity: 1;
    transition: opacity 1s ease;
}
.response {
    text-align: center;
    min-height: 30px;
    margin: 5px;
    font-size: larger;
}
#r2 {
    font-weight: bold;
}
#finalButton {
    margin: 10px;
    width: 60px;
    height: 35px;
}
#finalSet {
    display: flex;
    justify-content: center;
    visibility: hidden;
}
#finalSet input {
    width: 200px;
    height: 30px;
    margin: 10px;
}
#answerPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#answerPage h1 {
    text-align: center;
}
#answerPage p {
    max-width: 650px;
}
#answerPage blockquote {
    font-family: "rochester", cursive;
    font-size: x-large;
    color: darkgrey;
    max-width: 600px;
}
#coordinates {
    text-align: center;
    margin: 35px 0;
}
#coordinates a {
    text-decoration: none;
    color: rgb(142, 142, 53);
    font-size: xx-large;
}
@media (min-width: 800px) {
    #container {
        margin: 50px;
        margin-top: 0;
    }
    #puzzleContainer {
        margin-bottom: 0;
    }
}
@media (max-width: 799px) {
    #coordinates a {
        font-size: 27px;
    }
}
/* Loader */
.loader {
  display: inline-grid;
  width: 90px;
  aspect-ratio: 1;
  clip-path: polygon(100% 50%,85.36% 85.36%,50% 100%,14.64% 85.36%,0% 50%,14.64% 14.64%,50% 0%,85.36% 14.64%);
  background: #515151;
  animation: l2 6s infinite linear;
  margin-top: 200px;
}
.loader:before,
.loader:after {
  content:"";
  grid-area: 1/1;
  background: #939393;
  clip-path: polygon(100% 50%,81.17% 89.09%,38.87% 98.75%,4.95% 71.69%,4.95% 28.31%,38.87% 1.25%,81.17% 10.91%);
  margin: 10%;
  animation: inherit;
  animation-duration: 10s;
}
.loader:after {
  background: #d6d6d6;
  clip-path: polygon(100% 50%,75% 93.3%,25% 93.3%,0% 50%,25% 6.7%,75% 6.7%);
  margin: 20%;
  animation-duration: 3s;
  animation-direction: reverse;
}
@keyframes l2 {to{rotate: 1turn}}