h1 {
  text-align: left;
}

h3 {
  text-align: justify;
}

a:link,
a:visited {
  color: cornflowerblue;
}

a {
  color: rgb(177, 63, 63);
}

.rainbow {
  background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bottom {
  text-align: center;
  position: fixed;
  width: clamp(40ch, 60%, 70ch);
  bottom: 0;
}

html {
  background: linear-gradient(90deg, rgb(0, 18, 85) 0%, rgb(45, 0, 87) 100%);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

body {
  color: whitesmoke;
  animation: fadeInAnimation ease 5s;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  width: clamp(40ch, 60%, 70ch);
  margin: auto;
}

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

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  40% {
    background-position: 100% 50%;
  }
  60% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
