*,
input {
  font-family: "Poppins", sans-serif;
}

body {
  background: #021129 !important;
}

.wrapper {
  margin: 2rem auto;
  width: 100%;
}

#logo {
  margin: 1rem auto 1rem auto;
  width: 30%;
}

#logo img {
  width: 100%;
}

.backArrow {
  cursor: pointer;
  margin-bottom: 5px;
}

.content {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  width: 100%;
  gap: 3rem;
}

.nav-links {
  width: 33%;
  color: #000;
  background: #fff;
  padding: 1rem 2rem;
}
.nav-links p {
  color: #021129;
  text-align: center;
  font-size: 1.3rem;
}

hr {
  margin-bottom: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  padding: 0.5rem;
  transition: ease 0.4s;
}

.nav-links a:hover {
  background: #021129;
  color: #fff;
}

#prohibited ul li {
  color: #fff;
}

.body-text {
  width: 55%;
}

h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3rem;
}

h5 {
  color: #fff;
  margin: 2rem auto;
  font-weight: 600;
}

p {
  color: #fff;
  margin: 2rem auto;
}

.mobileHeading {
  display: none;
}

/*MEDIA VIEWS*/
@media (max-width: 768px) {
  .content {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links,
  .body-text {
    width: 98%;
  }

  #logo {
    width: 60%;
  }

  .mobileHeading {
    display: block;
  }

  .mobileHeading h2 {
    font-size: 20px;
    text-align: center;
  }

  .body-text h2,
  #termsService {
    display: none;
  }
}

@media (max-width: 568px) {
  #logo {
    margin: 1rem auto 0 auto;
    width: 60%;
  }
  
  .content {
    margin-top: 0;
  }
}
