* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #111; /* Light black */
    font-family: sans-serif, Arial, Helvetica, sans-serif;
    z-index: 0;
    position: relative;
  }

  
.navbar_item a {
    color: #fff;
    text-decoration: none; 
    font-weight: 700;
}

.navbar_container {
    display: flex;
    gap: 75px;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.navbar {
    border: 1px solid #656565;
    max-width: 650px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 20px;
    background-color: #151515;
}

.navbar_button {
    font-size: 20px;
    background-color: #7289da;
    padding: 7px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
}

.navbar_button:hover {
    background-color: #4b70f5;
    transform: scale(1.1);
}

.navbar_item {
    margin: 0;
}
.navspan {
  margin-right: 5px;
  font-size: 17px;
}

@media (max-width: 550px) {
  .navbar_container {
    gap: 20px;
    font-size: 15px;
  }

  .navbar {
    width: 80%;
  }

  .navspan {
    display: none;
  }
}

footer {
    border-top: 1px solid #656565;
    height: 200px;
    margin-top: 50px;
    color: white;
    display: flex;
    padding: 50px 50px 50px 0;
    gap: 100px;
    justify-content: center;
    background-color: #151515;
  }
  
  .footer_navbars {
    display: flex;
    gap: 100px;
  }
  
  .f1 a {
    text-decoration: none;
    color: #d4d4d8;
  }
  
  .footlist {
    list-style: none;
  }
  
  .f1t {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
  }
  
  .f1 {
    margin-bottom: 10px;
  }
  
  .footlogo {
    height: 75px;
    width: 75px;
    border-radius: 50%;
  }
  
  .allrights {
    font-size: 12px;
    margin-top: 10px;
    color: white;
  }
  
  @media (max-width: 500px) {
    footer {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      height: auto;
      gap: 40px;
      text-align: center;
    }
  
    .footer_navbars {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .f1 {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footlogo {
      margin: 0 auto;
    }
  }
  
  .hr1 {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #333;
    color: #333;
    text-align: center;
  }
  .hr1:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: #111;
  }

  .terms {
    margin: 20px
  }

  h2 {
    color: white;
  }

  h3 {
    color: white;
    margin-top: 15px;
  }

  h4 {
    color: white;
    padding: 10px;
  }

  h4:last-of-type {
    margin-bottom: 15px;
  }

  h5 {
    color: white;
  }

  li {
    color: #d4d4d8;
    margin: 20px 0;
    list-style: none;
  }

  h1 {
    text-align: center;
    margin-top: 15px;
    color: white;
  }

  .logo {

    display: flex;
    margin: 75px auto 0 auto;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    text-align: center;
  }

  h4 a {
    text-decoration: none;
    color: #47bbff;
  }
