body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

.background {
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #d3eafd, #f0f7ff, #d3eafd);
  background-size: 600% 600%;
  animation: gradientShift 30s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}


.date-link-container {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.svg-container {
  width: 40vw;
  height: 40vw;
  max-width: 600px;
  max-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.center-svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.date-link-container {
  text-align: center;
  margin-top: 20px;
}

.date-linkX {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;      
  font-size: 36pt;       
  color: #000;           
  text-decoration: none; 
}

.date-link {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;

  /* Responsive scaling */
  font-size: clamp(2rem, 5vw, 48pt);

  color: #000;
  text-decoration: none;
}


.date-link:hover {
  text-decoration: underline;
}
