/* === Customization === */
:root {
  --blur-amount: 10px;
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

/* === Background image (blurred) === */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  transform: scale(1.1);
  filter: blur(var(--blur-amount));
  z-index: -2;
}

/* === Dark overlay for text contrast === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

/* === Centered date text === */
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.date {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: 4vw;
  text-align: center;
  padding: 0 1rem;
}

/* === Responsive floor for small screens === */
@media (max-width: 480px) {
.date {
    font-size: 6vw;
  }
}

@media (min-width: 1200px) {
  .date {
    font-size: 48px;
  }
}
