body {
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
main{
    padding: 2em;
}
.silverTextColor {
  color: silver;
}

a {
  text-decoration: underline;
  text-decoration-color: #3cffd0;
}

a:hover {
  color: #3cffd0;
}

h1{
  line-height: 0.8;
  margin: 0 0 0.2em 0;
}

h4,h3,h2{
  margin-top: 0;
  margin-bottom: 0;
}

h1,h2,h3,h4{
  opacity: 0;
  animation: fadeInWhileSliding 0.25s ease-in forwards;
}

@keyframes fadeInWhileSliding {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

h1 {
animation-delay: 0.3s;
}

h2 {
animation-delay: 0.35s;
}

h3:nth-of-type(1) {
animation-delay: 0.4s;
}
h3:nth-of-type(2) {
animation-delay: 0.45s;
}
h4{
animation-delay: 0.45s;
}