/* Reset and font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s, color 0.3s;
}

/* Center div */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

/* Responsive text */
h1 {
  font-size: 5vw;
  font-weight: 600;
}

/* Animation */
.fade-in {
  animation: fadeZoom 1.5s ease forwards;
  opacity: 0;
  transform: scale(0.95);
}

@keyframes fadeZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Light mode */
body {
  background-color: #ffffff;
  color: #000000;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #ffffff;
  }
}
