html {
  /* background: linear-gradient(135deg, rgb(112, 214, 214), rgb(70, 106, 48)); */
  background-color: rgb(48, 106, 88);
  height: 100%;
}

body {
  font-family: sans-serif;
  white-space: pre-line;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*
footer {
  color: rgb(255, 255, 255); 
  right: 20%;
  animation: fade 21s forwards;
  text-align: center;
}
*/
hr {
  border: none;
  border-top: 3px double rgb(198, 197, 197);
  color: rgb(185, 179, 179);
  overflow: visible;
  text-align: center;
  height: 5px;
  width: 80%;
}

hr::after {
  /* background: #fff; */
  /* content: '§'; */
  padding: 0 4px;
  position: relative;
  top: -13px;
}

.title {
  color: rgb(255, 255, 255); 
  position: absolute;
  right: 100%;
  animation: fly-in 3s forwards;
}

.logo {
  animation: flyer 3s forwards;
}

.foo {
  animation: fade 6s forwards;
  color: rgb(255, 255, 255);
  position: absolute;
  right: 20%;
  font-size: 24px;
  font-weight: bold;
}

.about {
  text-align: center;
  flex-direction: column;
  color: rgb(183, 221, 227);
  font-size: 22px;
  animation: fade-in 8s forwards;
}

.quotes {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: justify;
  font-family: serif;
  width: 40%;
  margin: auto;
  color: rgb(20, 215, 205);
  font-size: 20px;
  animation: rise-up 8s forwards;
  /* animation-delay: 6s; */
}

@keyframes rise-up {
  0% {
    transform: translateY(1000%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes fly-in {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}

@keyframes flyer {
  0% {
    transform: translate(800%, 0) rotateZ(0turn);
  }
  100% {
    transform: translate(-200%, 0) rotateZ(-3turn);
  }
}

@keyframes fade-in {
  0% {
    transform: scale(1%);
  }
  100% {
    transform: scale(100%);
  }
}

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