@import url('https://fonts.googleapis.com/css2?family=Poppins: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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    user-select: none;
}

.footer{
    position: relative !important;
    bottom: 0;
}


.about {
    margin-top: 100px;
    margin-bottom: 12px;
    background: #fff;
    max-width: 800px;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0  0 8px 5px rgba(0, 0, 0, 0.3);
    user-select: none;
  }
  
  .about h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;

  }
  
  .about h3 {
    color: #555;
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  
  .about p {
    font-size: 1rem;
    color: #666;
    margin: 1rem 0;
  }
  
  .benefits {
    list-style-type: square;
    padding-left: 10px;
    color: #555;
  }
  
  .benefits li:hover {
    color: #06aa00;
  }
  .benefits li {
    margin: 0.5rem 0;
    transition: color 0.2s linear;
    cursor: pointer;
  }


  
  .benefits li i{
    margin: 0 8px 0 0;
    color: #06aa00;
  }
  
.mem_btn{
    display: flex;
    align-self: center;
    justify-content: center;
}

.mem_btn button{
    padding: 10px 20px;
    color: #fff;
    background: #0051ff;
    outline: none;
    border: none;
    border-radius: 8px;
    margin: 20px 0 0 0;
    box-shadow: 0 0 10px 5px rgba(0, 38, 255, 0.5);
    cursor: pointer;
}

@media (max-width: 768px){
    .about{
        max-width: 380px;
    }
  }