/* animations */
@keyframes reverseWipe {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

.logo,
.menu-btn,
.page-title,
#hero-section,
#thumbnail-grid,
#projects,
#bio,
#statement,
#contact-form,
#links,
#section-404,
footer {
  opacity: 0;
  animation: moveUp 0.5s ease-out forwards;
}

.logo,
.menu-btn {
  animation-delay: 0.5s;
}

#hero-section,
.page-title {
  animation-delay: 0.7s;
}

#hero-section,
#projects,
#bio,
#contact-form,
#links,
#section-404 {
  animation-delay: 0.9s;
}

#thumbnail-grid,
#statement {
  animation-delay: 1.1s;
}

footer {
  animation-delay: 1.3s;
}
