*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
}
#online-members {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  animation: colorChange 0.5s infinite; /* Adjust the duration and iteration as needed */
}

@keyframes colorChange {
  0% {
    color: #078080; /* Initial color */
  }
  50% {
    color: #0004ff; /* Midway color */
  }
  100% {
    color: #e4e411; /* Final color, same as initial */
  }
}


.landing-page{
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}
.landing-page::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("bg.jpg") no-repeat;
  background-size: cover;
  opacity: 0.3;
  animation: anim 25s linear infinite;
}

@keyframes anim {
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}

/* Additional styles for responsiveness */
@media (max-width: 768px) {
  .landing-page::after {
    background-position: center;
    background-size: cover; /* Adjust the size for mobile screens */
  }
}

.page-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 0 40px;
  box-sizing: border-box;
}
.page-content #logo {
  max-width: 100%; /* Ensure the logo is responsive */
  margin-top: 20px; /* Adjust the top margin as needed */
  margin-bottom: 1px; /* Adjust the bottom margin as needed */
  display: block; /* Ensures the image behaves as a block element */
  margin-left: auto; /* Centers the image horizontally */
  margin-right: auto; /* Centers the image horizontally */
}

/* Media query for screens with a maximum width of 768 pixels (typical for mobile devices) */
@media (max-width: 768px) {
  .page-content #logo {
    max-width: 80%; /* Adjust the max-width for smaller screens */
  }
}

/* Media query for screens with a minimum width of 769 pixels (typical for desktop) */
@media (min-width: 769px) {
  .page-content #logo {
    max-width: 500px; /* Adjust the max-width for larger screens */
  }
}


.page-content h1{
  color: #0671d4;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.page-content p{
  color: #fff;
  margin-bottom: 20px;
}
.page-content span {
  display: inline-block;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  color: #eeeaea;
  border: 2px solid #ece4e4;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: 0.4s linear;
  background: rgb(129, 1, 1); /* Add this line to set the background color to white */
  animation: anim 1.5s infinite; /* Adjust the animation duration and iteration as needed */
}

@keyframes anim {
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.page-content a span {
  padding: 2px; /* Add this line to set the padding for the text inside the anchor tag */
}

.page-content a:hover{
  color: #fff;
  background: #ff7979;
}
.text{
  padding: 10px;
  text-align: justify;
}
.text div{
  margin-bottom: 6px;
}