@font-face {
  font-family: "Peristyle";
  src: url("fonts/Peristyle-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #07100b;
  color: #f3ead7;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.legal-page {
  min-height: 100vh;
  padding: 7vh 8vw 8vh;
  background:
    linear-gradient(rgba(7,16,11,.92), rgba(7,16,11,.97)),
    url("images/background-desktop.jpg") center / cover fixed;
}

.legal-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.legal-title {
  font-family: "Peristyle", Georgia, serif;
  font-weight: 400;
  font-size: clamp(50px, 6vw, 82px);
  line-height: .9;
  margin: 0 0 55px;
  text-transform: uppercase;
}

.legal-page h2 {
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 35px 0 12px;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243,234,215,.88);
  margin: 0 0 16px;
}

.back {
  display: inline-block;
  margin-top: 45px;
  color: #f3ead7;
  text-decoration: none;
  border: 1px solid rgba(243,234,215,.75);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.back:hover {
  background: #f3ead7;
  color: #111;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 7vh 25px 8vh;
    background: linear-gradient(rgba(7,16,11,.92), rgba(7,16,11,.97)),
                url("images/background-mobile.jpg") center / cover fixed;
  }

  .legal-title {
    font-size: 47px;
    margin-bottom: 42px;
  }

  .legal-page p {
    font-size: 14px;
  }
}
