@import url("./fonts/stylesheet.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.home-content {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: auto;
  min-height: 100vh;
  background-color: #480068;
}

.welcome-msg {
  font-weight: 600;
  font-size: 36px;
  color: #ffffff;
}

.bg-logo {
  width: 250px;
  margin: 30px 0 60px;
}

.download-msg {
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 24px;
}

.app-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.following-msg {
  margin-top: 60px;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
}

.business-links {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 50px;
  gap: 30px;
}

.footer {
  width: 100%;
  font-size: 16px;
  font-family: "Poppins";
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.divider {
  width: 100%;
  border: 1px solid rgb(225, 159, 0);
}

.copyright p {
  color: #ffffff;
}

.terms-policy {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.terms-policy a {
  color: #ffffff;
  text-decoration: unset;
}

.terms-policy .privacy-msg {
  margin-left: 20px;
}

.header {
  padding: 30px 0;
  color: #ffffff;
  background-color: #480068;
}

.header .terms-header-title {
  margin-top: 50px;
  font-weight: 700;
  font-size: 32px;
}

.terms-content {
  background-color: #ffffff;
}

.terms-paragraph {
  margin: 40px 0;
  text-align: left;
}

.terms-paragraph .terms-title {
  font-size: 20px;
  font-family: "Poppins";
  font-weight: 600;
}

.terms-paragraph .terms-desc {
  font-size: 18px;
}

.contact-info {
  color: #480068;
  text-decoration: unset;
}

.privacy-content {
  background-color: #ffffff;
}

.privacy-title {
  font-size: 20px;
  font-family: "Poppins";
  font-weight: 600;
  text-align: left;
  margin-top: 40px;
}

.privacy-desc {
  font-size: 18px;
  text-align: left;
}

.privacy-list {
  text-align: left;
}

@media screen and (max-width: 991px) {
  .app-links {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
  }
}