* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100svh;
}

body {
  margin: 0;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show-rightwards {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  html,
  body {
    font-size: 12px;
  }
}

@media (max-width: 315px) {
  html,
  body {
    font-size: 10px;
  }
}

.privacy-policy-container {
  width: 100lvw;
  min-height: 100svh;
  display: flex;
  padding: 5%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #02274f 0%, #004a99 100%);
}

.privacy-policy-card {
  max-width: 1000px;
  margin: auto;
  padding: 2.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0px 4px 16px 0px #00000040;
  animation:
    show-downwards 1s ease-out,
    fade-in 1s ease-out;
}

.privacy-policy-header {
  color: #4d4d4d;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
}

.privacy-policy-divider {
  width: 70%;
  margin: 0.25rem 0 1.25rem;
  border: 2px solid #02274f;
}

.privacy-policy-content {
  hyphens: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-policy-list-item {
  margin-left: 1.25rem;
}
