
*{
    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("okk232.gif") no-repeat;
    background-size: cover;
    opacity: .3;
    animation: anim 25s linear infinite;
  }
  @keyframes anim {
    50%{
      transform: scale(2);
    }
    100%{
      transform: scale(1);
    }
  }
  .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 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;
  }