@import url("https://meyerweb.com/eric/tools/css/reset/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Comfortaa", cursive;
  background-color: #FBFCFF;
}

a {
  text-decoration: none;
}

hr {
  margin: 3em auto;
  max-width: 30em;
}

.sky-section-text {
  color: #f7f7f7;
  background-color: #0ea8da;
  text-decoration: underline;
  width: 100%;
  padding: 0.5em 0 0.2em;
  text-align: center;
  font-size: 3em;
}

.sky-section {
  height: 100vh;
  width: 100%;
  background: url("media/images/sky.jpeg");
  background-size: 100% 100vh;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 5em;
  position: relative;
}
.sky-section img {
  position: absolute;
  height: calc(10vh - 30px);
  width: auto;
  left: -20em;
}

.padded-section {
  padding: 0 3em;
}
.padded-section h2 {
  color: rgb(71, 71, 71);
  text-decoration: underline;
  font-size: 2em;
  margin: 0.4em 0 0.1em;
  line-height: 1.2em;
}
.padded-section p {
  font-size: 1.4em;
  line-height: 1.2em;
}

.faq {
  display: grid;
  grid-template-columns: auto auto;
  max-width: 100em;
  margin: 0 auto;
}
@media (max-width: 55em) {
  .faq {
    grid-template-columns: auto;
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.remember {
  text-align: center;
  margin: 0 auto 5em;
  max-width: 20em;
}
.remember img {
  position: fixed;
  width: 5em;
  height: auto;
  bottom: 3em;
  right: 0;
  opacity: 0;
}

.end, .nope, .cook-over-lava, .hide-webpage {
  position: fixed;
  display: flex;
  width: 0%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  overflow: hidden;
}

.end {
  background-color: rgb(29, 29, 29);
  transition: width 2s;
}
.end h2 {
  color: white;
  margin: auto;
  white-space: nowrap;
  line-height: 2em;
  font-size: 5em;
  text-align: center;
  font-family: "Pacifico", cursive;
  width: 0;
  overflow: hidden;
  transition: width 1s ease-out;
}

.nope {
  background-color: white;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.nope h2 {
  margin: auto;
  font-size: 6em;
}

.cook-over-lava {
  transition: width 1s ease-in-out;
  padding: 0;
  flex-direction: column;
  white-space: nowrap;
  background-color: white;
  padding-top: 30vh;
}
.cook-over-lava * {
  margin: 0 auto !important;
}

.hide-webpage {
  width: 100%;
  background-color: white;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

footer {
  height: 3em;
  background-color: rgb(21, 13, 6);
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
}
footer p {
  text-align: right;
  color: white;
  font-size: 1.4em;
  margin: auto 0.75em;
}

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