html,
body {
  width: 100%;
  margin: 0;
  background-image: linear-gradient(to bottom right, #fddcd4 50%, #fffafa 100%);
  font-family: sans-serif;
}

header {
  margin-top: 25px;
}

#headerlinks,
#splash {
  font-family: "Rouge Script", cursive;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  font-size: 32pt;
}

#headerlinks {
  display: none;
  animation: fadein 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

#headerlinks h2 {
  padding: 0;
  margin: 0;
}

#splash {
  font-size: 40pt;
  animation: fadein 1s;
  animation-delay: 0.15s;
  opacity: 0;
  animation-fill-mode: forwards;
  min-height: 75vh;
}

#logo {
  width: 25%;
  aspect-ratio: 1/1;
}

#splash > * {
  max-width: 45%;
}

main {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-start;
}

main h2 {
  text-align: center;
  font-family: "Rouge Script", cursive;
  font-size: 24pt;
}

main > * {
  border: solid white 5px;
  background-color: white;
  box-shadow: 4px 4px 4px 4px #aaa;
  width: 30%;
  padding: 10px;
  border-radius: 30px;
  min-width: 150px;
  line-height: 1.75em;

  opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
}

main > *:nth-child(1) {
  animation-delay: 0.3s;
}
main > *:nth-child(2) {
  animation-delay: 0.45s;
}
main > *:nth-child(3) {
  animation-delay: 0.6s;
}

#about img {
  aspect-ratio: 1/1;
  width: 75%;
  margin: 0 auto;
  display: block;
}

a {
  color: #28d;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: underline;
}

iframe {
  border: none;
  border-radius: 25px;
  width: 100%;
  min-height: 800px;
}

footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 20px;
  min-height: 40%;
  align-items: center;
}

#quote {
  font-family: "Rouge Script", cursive;
  font-size: 36pt;
  font-weight: 100;
  max-width: 50%;
  text-align: center;
  vertical-align: center;
}

.copyright {
  width: 100%;
  text-align: center;
}

.copyright * {
  color: #777;
  text-decoration: none;
  font-size: 10pt;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
  #headerlinks {
    display: flex;
    justify-content: center;
  }

  #headerlinks > * {
    border: solid white 4px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 4px 4px 4px 4px #aaa;
    margin: 5px;
    width: 45%;
    text-align: center;
    font-size: 20pt;
  }

  #splash > * {
    width: 100%;
    max-width: initial;
    margin: 20px;
    text-align: center;
    font-size: 24pt;
  }

  #logo {
    width: 90%;
  }

  main > * {
    width: 90%;
    text-align: center;
    border: solid white 2px;
    margin: 10px;
  }

  #quote {
    max-width: 95%;
  }
}
