body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: black;
  animation: fadeToWhite 0.2s forwards;
  animation-delay: 2s;
  overflow: hidden;
}

@keyframes fadeToWhite {
  from {
    background-color: black;
  }
  to {
    background-color: white;
  }
}

.centered-image {
  opacity: 0;
  max-width: 90%;
  max-height: 90vh;
  border-radius: 0.75rem;
  animation: fadeInImage 0.5s ease-out forwards;
  animation-delay: 2.3s;
  display: block;
  margin: 0 auto;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

h1 {
  display: none;
}
