body {
  min-height: 100vh;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

h1{
  font-size: 300px;
  text-align: center;
  background: linear-gradient(90deg, #2B35AF, #4A90E2, #90E0EF, #4A90E2, #2B35AF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shine 2s ease-in-out, slide-to-top 1s ease-in-out 2s forwards;
  transform: translateY(calc(25vh - 190px));
}

@keyframes slide-to-top {
  0% {
    transform: translateY(calc(25vh - 190px));
  }
  100% {
    transform: translateY(0);
    margin-top: 40px;
  }
}

@keyframes gradient-shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

h2{
  text-align: center;
}

.explanation {
  text-align: left;
  font-size: 30px;
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 20px;
  font-weight: 310;
  color: #000000;
  white-space: pre-wrap;
  animation: slide-up-text 1s ease-in-out 2s forwards;
  transform: translateY(calc(100vh - 100px));
  opacity: 0;
}

@keyframes slide-up-text {
  0% {
    transform: translateY(calc(100vh - 100px));
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.email-link {
  color: #444444;
  text-decoration: underline;
  font-weight: 310;
  transition: font-weight 0.2s ease;
}

.email-link:hover {
  font-weight: 500;
}

.logo {
  text-align: center;
  margin: 40px auto 20px;
}

.logo img {
  max-width: 300px;
  height: auto;
}

.contact{
  margin-top: auto;
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
}