@font-face {
  font-family: "GaramondPro";
  src: url("/fonts/AdobeGaramondProRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  font-family: GaramondPro, system-ui, sans-serif;
  font-size: 22px;
  padding: 0;
  color: black;
  overscroll-behavior-block: none;
  font-variant: small-caps;
  font-weight: 100;
  letter-spacing: 1px;
  cursor: default;
}

h1 {
  position: absolute;
  margin: 20px;
  font-size: 1.5rem;
}

main {
  position: absolute;
  width: 100%;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}

h2,
p {
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 30px;
}

p {
  margin-bottom: 50px;
}

p span {
  font-variant: initial;
}

a {
  cursor: pointer;
}

a span {
  cursor: pointer;
  display: inline-block;
  transform: scaleX(1);
  width: 8px;
  transition: all 0.1s ease;
}

a:hover span {
  transform: scaleX(1.8);
  width: 18px;
}
