@import url('../reset.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* BASE COLORS */
  --black: #333;
  --red: #ff8562;

  /* TEXT COLORS */
  --text-primary: var(--black);
  --text-title: var(--black);
  --text-accent: var(--red);
  --text-error: var(--red);
}

html, body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  color: var(--black);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
}
a {
  color: var(--red);
  text-decoration: none;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.title {
  margin-bottom: 20px;
  text-transform: uppercase;
}

article.privacy-policy {
  padding: 60px 20px 100px;
}