@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    
  background: linear-gradient(135deg, #003d76, #00070e);
  animation: gradientMove 8s infinite alternate;
  font-family: "Inter", serif;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
}

#main {
    width: 100vw;
    height: 100vh;
    user-select: none;
}

#logo {
    width: 6vw;
    padding-top: 1vw;
     
    user-select: none;
}

.maintag {
    text-align: center;
    color: white;
    letter-spacing: 0.1vw;
    font-size: 4.5vw;
    line-height: 80px;
    font-weight: 400;
}

.sechead {
    text-align: center;
    color: white;
    letter-spacing: 0.2vw;
    font-size: 1.6vw;
    padding-top: 20px;
    user-select: none;
}

.sechead>.cmg {
    font-weight: 300;
    
}

.sechead>.dateh1 {
    font-weight: 700;
    user-select: none;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.5vw;
    margin-top: 4vw;
    user-select: none;
  }
  
  .timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-weight: lighter;
    border: 1px solid rgba(255, 255, 255, 0.289);
    padding: 1vw;
    padding-bottom: 1.6vw;
    border-radius: 10px;
  }
  
  .timer span {
    font-size: 3vw;
    font-weight: bold;
    color: #fff; /* Electric Blue */
    padding: 10px;
  }


  .centt {
    position: absolute;
    margin-top: 50vh;
    margin-left: 50vw;
    transform: translate(-50%,-50%);
    height: fit-content;
    width: fit-content;
  }

  .line {
    width: 20%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.597);
    margin: auto;
    margin-top: 5vw;
  }
  .anim {
    animation: fadeIn 2s ease-out;
}



  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #0D6EFD, 0 0 20px #0D6EFD, 0 0 30px #0D6EFD;
    }
    100% {
        text-shadow: 0 0 20px #0D6EFD, 0 0 30px #0D6EFD, 0 0 40px #0D6EFD;
    }
}

 

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



@media (max-width: 1024px) {
  .maintag {
    line-height: 8vw;
  }
}

@media (max-width: 768px) {
  #logo {
    width: 16vw;
  }
  .maintag {
    font-size: 12vw;
    max-width: 80vw;
    line-height: 16vw;
    text-wrap: wrap;
    margin: auto;
    display: block;
    font-weight: bold;
    
  }
  .sechead {
    font-size: 5vw;
     
  }

  .timer {
    margin-top: 12vw;
     font-size: 3vw;
     padding: 4vw;
  }

  .timer span {
    font-size: 8vw;
  }

  .line {
    margin-top:12vw;
    margin-bottom: 2vw;
    width: 35vw;
  }
}
 

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #003d76, #00070e);
  font-family: 'Inter', sans-serif;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Glow effect */
body::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 154, 255, 0.053), transparent);
  filter: blur(40px); /* Add blur for a soft glow */
  pointer-events: none;
  opacity: 1;
  transform: translate(calc(var(--cursor-x, 50px)), calc(var(--cursor-y, 50px)));
  transition: transform 0.1s ease-out;
  z-index: -1; /* Ensure it stays behind content */
}
