@charset "UTF-8";

@font-face {
  font-family: "New Rail Alphabet";
  src: url('../fonts/newrailalphabet-black.woff2') format('woff2'),
       url('../fonts/newrailalphabet-black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "New Rail Alphabet", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
  font-size: 1.5rem;
  line-height: 1.075;
  background-color: #cccccc;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
}

.page-wrapper {
  padding: .5rem;
  background-color: #cccccc;
  transition: background-color 500ms ease;
  color: #000000;
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  margin-bottom: 1.075em;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

p,
li,
a {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


footer {
  margin-top: auto;
}

@media (min-width: 768px) {
  body {
    font-size: 3vw;
    letter-spacing: -0.02em;
  }
}

@media (hover: hover) {
  .page-wrapper.link-hover {
    background-color: #000000;
  }
}