* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-width: 720px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  gap: 2rem;
  padding: 2rem;
  overflow: auto;
}

.privacy-policy {
  h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}

h1,
h2,
h3 {
  font-weight: 600;
}

h3 {
  font-size: 1rem;
}

.logo {
  border-radius: 25%;
  margin-bottom: 0.5rem;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.subtitle {
  color: #666;
  text-align: center;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

footer > div {
  display: flex;
  gap: 0.5rem;
}

footer a {
  text-decoration: none;
}
