@import url("https://fonts.cdnfonts.com/css/poppins");
@import url("https://fonts.cdnfonts.com/css/syne");
@import url("https://fonts.cdnfonts.com/css/montserrat");

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a {
  text-decoration: none;
  color: #fff;
}

body {
  background-color: #000;
}

/*  */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background-color: #090909;
  border-bottom: 1px solid rgba(255, 255, 255, 0.242);
}

.header h1 {
  padding: 60px 100px;
  font-family: Syne;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
}

.header-title {
  margin: auto;
  width: 40%;
  padding: 60px;
}

.header-title h3 {
  text-align: center;
  text-transform: uppercase;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 28px;
  padding: 50px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.242);
  background-color: #131313;
}

.terms {
  position: relative;
  margin: auto;
  padding: 50px;
  max-width: 50%;
}

.terms h1 {
  text-transform: uppercase;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 28px;
  padding-bottom: 50px;
  padding-top: 50px;
  color: #fff;
}

.terms p {
  color: white;
}

.terms ul li {
  color: #fff;
}

/*  */

@media (min-width: 768px) and (max-width: 1223px) {
  .header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    list-style: none;
    justify-content: center;
    align-items: center;

    user-select: none;
    background-color: #090909;
    border-bottom: 1px solid rgba(255, 255, 255, 0.242);
  }

  .header h1 {
    padding: 60px 100px;
    font-family: Syne;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
  }

  .header-title {
    margin: auto;
    width: 70%;
    padding: 50px;
  }

  .header-title h3 {
    text-align: center;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 24px;
    padding: 50px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.242);
    background-color: #131313;
  }

  .terms {
    position: relative;
    margin: auto;
    padding: 50px;
    max-width: 70%;
  }

  .terms h1 {
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 50px;
    padding-top: 50px;
    color: #fff;
  }

  .terms p {
    color: white;
  }
}

@media (max-width: 768px) {
  .header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    list-style: none;
    justify-content: center;
    align-items: center;

    user-select: none;
    background-color: #090909;
    border-bottom: 1px solid rgba(255, 255, 255, 0.242);
  }

  .header h1 {
    padding: 60px 100px;
    font-family: Syne;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
  }
  .header-title {
    margin: auto;
    width: 100%;
    padding: 50px;
    display: none;
  }

  .header-title h3 {
    text-align: center;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 18px;
    padding: 50px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.242);
    background-color: #131313;
    display: none;
  }

  .terms {
    position: relative;
    margin: auto;
    padding: 50px;
    max-width: 100%;
  }

  .terms h1 {
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 50px;
    padding-top: 50px;
    color: #fff;
  }

  .terms p {
    color: white;
    font-size: 12px;
  }
}
