@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}
html {
  font-size: 10px;
}
body {
  background: #e9e0ce;
  bottom: 0;
  color: #2b3036;
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  font-weight: 400;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.email {
  animation: fadeIn 0.7s ease-in forwards;
  animation-delay: 2.3s;
}
.footer {
  animation: fadeIn 0.7s ease-in forwards;
  animation-delay: 0.3s;
  bottom: 0;
  font-size: 1.4rem;
  left: 0;
  margin: 0 0 6rem;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
.footer p {
  margin: 0 0 0.6rem;
}
.link {
  color: #2b3036;
  text-decoration: none;
}
.logo {
  animation: fadeIn 0.7s ease-in forwards;
  animation-delay: 0.3s;
  margin: 6rem 0 0;
  max-height: 38.4rem;
  opacity: 0;
  max-width: 40rem;
  width: 75%;
}
.main {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  width: 100%;
}
.msg {
  animation: fadeIn 0.7s ease-in forwards;
  animation-delay: 1.3s;
}
.text {
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 4rem 0 0;
  opacity: 0;
  text-align: center;
}
.underline {
  position: relative;
  display: inline-block;
}
.underline::after {
  animation: growUnderline 0.7s ease-out forwards;
  animation-delay: 3.3s;
  background: #2b3036;
  bottom: -0.2rem;
  content: '';
  height: 0.2rem;
  left: 50%;
  position: absolute;
  right: 50%;
}
@keyframes growUnderline {
  to {
    left: 0%;
    right: 0%;
  }
}
