* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#legal-main-container {
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#legal-heading-container {
  height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121216;
  padding: 50px 0;
}
#legal-heading {
  display: flex;
  justify-content: end;
  flex-direction: column;
  height: fit-content;
  width: 50%;
}
#legal-heading span,
#legal-heading h2 {
  color: white;
}
#legal-second-main-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: whitesmoke;
}
#legal-upper-container {
  height: 300px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
#legal-upper-container h2 {
  color: #0077ff;
}
#legal-upper-container p {
  color: black;
  font-size: small;
  cursor: pointer;
}
#legal-upper-container span {
  color: gray;
  font-size: small;
  cursor: pointer;
}
#legal-upper-container span:hover {
  color: black;
}
#legal-upper-container a {
  font-size: 30px;
  text-decoration: none;
  color: black;
}
#legal-upper-container a:hover {
  color: #0077ff;
}
#legal-bottom-container {
  height: fit-content;
  width: 70%;
  display: flex;
  padding-bottom: 30px;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  text-align: center;
}
#legal-bottom-container h1 {
  color: gray;
}
#legal-bottom-container p {
  text-align: left;
  color: black;
  margin: 10px 0;
  font-size: small;
}
#legal-bottom-container h2 {
  color: black;
  text-align: left;
}
#legal-bottom-container span {
  font-weight: 500;
  color: black;
}
@media (max-width: 600px) {
  #legal-upper-container {
    height: 300px;
    width: 80%;
  }
}
