@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Revolution&family=Teko:wght@300..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  width: 40%;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}
#iconlogo
{
  position: absolute;
    top: 30px;
    width: 5%;
    left: 30px;
    transition: all 0.2s ease-in-out;
    z-index: 2;
    opacity: 0.5;
}
#iconlogo:hover
{
  cursor: pointer;
  opacity: 1;
  left: 35px;
}

.typing-text {
  font-size: 36px;
  font-weight: bold;
  font-family: "Teko", sans-serif;
  white-space: nowrap;  /* Prevent text from wrapping */
  overflow: hidden;  /* Hide the part of the text that's not visible yet */
  border-right: 3px solid;  /* Simulate a cursor effect */
  width: 0;  /* Initially, no text visible */
  transition: all ease-in-out;
  animation: typing 2s steps(12) infinite
}


/* .title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  animation: fadeInUp 2s ease-out;

} */

.slogan {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #bbb;
  animation: fadeInUp 2s ease-out 0.5s;
}

.countdown {
  letter-spacing: 5px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #34bef8;
  animation: fadeInUp 2s ease-out 0.5s;
  
}

.overlay {
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg3.jpeg') no-repeat center center/cover;
  z-index: 1;
  filter: blur(5px);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Animation for typing effect */
@keyframes typing {
  0% {
    width: 0; /* Start with no text visible */
  }
  100% {
    width: 35%; /* Reveal the entire text */
    border-right: 0;
    letter-spacing: 5px;
  }
}

/* Animation for deleting effect */


@media (max-width: 768px) {
  .title {
    font-size: 3rem;
  }

  .slogan {
    font-size: 1.2rem;
  }

  .countdown {
    font-size: 2rem;
  }

  .logo img {
    width: 100px;
  }
}
