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

.clock-container {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.time {
  font-size: 38px;
  font-weight: bold;
  color: #333;
}

.date {
  font-size: 14px;
  color: #666;
}

#loader-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007bff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a:hover {
  cursor: url('../../assets/img/cursero.png'), auto;
}

#tiutlo {
  font-size: clamp(1.7rem, 5vw, 5rem);
  color: #ffffff;
  font-weight: 400!important;
}

#texto {
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-weight: 200;
}

@keyframes bg-zoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
  100% {
    background-size: 100%;
  }
}

#index {
  margin: 0;
  min-height: 100svh!important;
  background-image: linear-gradient(rgba(0,0,0,0.69), rgba(0,0,0,0.5)), url('../../assets/img/BG.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
}

#thanks {
  color: rgb(255,255,255);
  font-size: 4rem;
}

#msm {
  color: rgb(255,255,255)!important;
}

#gracias {
  margin: 0;
  min-height: 100svh!important;
  background-image: linear-gradient(rgba(0,0,0,0.69), rgba(0,0,0,0.5)), url('../../assets/img/BG.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
}

#gra {
  padding-top: 200px;
}

