@import url("mediaQueries.css");

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&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&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins";
  scroll-behavior: smooth;
}


nav{
  position: fixed;
  top:0;
 }

 body{
  height: 100vh;
  width: 100%;
 }

  .terms-container {
    padding: 2rem;
    width: 100%;
    height: fit-content;
    background-color: #f9f9f9;
    line-height: 1.8;
    color: #333;
    border-radius: 8px;
  }
  
  .terms-container h2 {
    color: #1a1a1a;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;

  }
  
  .terms-container h3 {
    margin-top: 30px;
    font-size: 18px;
    color: #444;
  }
  
  .terms-container ul {
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .terms-container ul li {
    margin-bottom: 10px;
  }
  
  .terms-container p {
    margin-bottom: 16px;
    font-size: 12px;
  }
  li{
    font-size: small;
  }


  .copyright-social-section {
    background: #000;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .social-handles {
    cursor: pointer;

    & a{
      color: var(--text-light);
      font-size: 22px;
      margin: 0 2px;
      transition: 0.32s ease-in-out;
      &:hover{
        color: #fff;
      }
    }
  }