* {
  box-sizing: border-box;
}

:root {
  --off-black: #1d1d1f;
  --text-color: var(--off-black);
}

body {
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;

  color: rgb(60, 60, 60);
  margin: 0;
  padding: 0;
}

.root-document {
  width: 100%;
  margin: auto;
}

.privacy-policy-content {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  margin: auto;
  gap: 40px;
  padding: 40px 20px;
}

.privacy-text {
  line-height: 2em;
  margin-bottom: 0;
  margin-top: 20px;
}

.privacy-text-title {
  line-height: 2em;
  margin-bottom: 0;
  margin-top: 40px;
}

h1 {
  margin: 0;
  font-weight: 600;
}

.last-update-text {
  font-size: small;
}

.app-icon {
  width: 128px;
}