/* RESET CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* END OF RESET CSS */

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.placeholder {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #131311;
  color: white;

  h1 {
    font-weight: 700;
    font-size: clamp(1.5rem, 1.1rem + 2vw, 3.5rem);
    line-height: 120%;
  }
  p {
    font-size: clamp(1.25rem, 1.05rem + 1vw, 2.25rem);
  }

  a {
    color: white;
  }

  a:hover {
    color: #eaaa08;
    transition: color 0.2s;
  }
}

.privacy {
  padding: 20px 16px;
  max-width: 1640px;

  h1 {
    font-weight: 700;
    font-size: clamp(1.5rem, 1.1rem + 2vw, 3.5rem);
    line-height: 120%;
  }
  h2 {
    font-size: clamp(1.25rem, 1.05rem + 1vw, 2.25rem);
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 24px;
  }

  p {
    margin: 14px 0;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    line-height: 120%;
  }
  ul {
    list-style: disc;
    padding-left: 32px;

    li {
      margin: 8px 0;
      line-height: 120%;
      font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    }
  }
  a {
    color: #000;
  }
  a:hover {
    color: #eaaa08;
    transition: color 0.2s;
  }

  .updated {
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  }

  .block_wrapper {
    margin: 44px 0;
  }
}

@media screen and (min-width: 768px) {
  .privacy {
    padding: 20px 32px;
  }
}

@media screen and (min-width: 1280px) {
  .privacy {
    padding: 32px 40px;

    ul {
      list-style: disc;
      padding-left: 40px;

      li {
        margin: 12px 0;
      }
    }

    p {
      margin: 18px 0;
    }
  }
}

@media screen and (min-width: 1440px) {
  .placeholder {
    gap: 100px;
  }
}

@media screen and (min-width: 1920px) {
  .privacy {
    margin: 0 auto;
  }
}
