/* --------------------------------------------------- IMPORT --------------------------------------------------- */
@import url("https://use.typekit.net/hoc1ufv.css");
/* --------------------------------------------------- HTML --------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    background-color: #E5DFDF;
    font-family: "itc-american-typewriter", serif;
    color: white;
}
h1 {
    font-size: 10vh;
    font-family: "itc-american-typewriter", serif;
    font-weight: 700;
    font-style: normal;
}
h2 {
    font-size: 8vh;
    text-transform: uppercase;
}
h3 {
    font-size: 6vh;
    text-transform: uppercase;
}
p {
    font-size: 4vh;
    font-weight: 600;
    font-style: normal;
}
a {
    background-color: none;
    text-decoration: none;
}
/* --------------------------------------------------- RESPONSIVE --------------------------------------------------- */
@media (max-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
    section {
        width: 90%;
        margin: 0 auto;
        padding-top: 2vh;
        padding-bottom: 5vh;
    }
    h2 {
        font-size: 6vh;
    }
}
::selection {
    background: #ffffff95;
}
::-moz-selection {
    background: #ffffff95;
}
@media (min-width: 1025px) {
    .hide-mobile {
        display: none !important;
    }
    section {
        margin: 0 auto;
        padding-bottom: 10vh;
        max-width: 60%;
    }
}
/* --------------------------------------------------- EVERYTHING --------------------------------------------------- */
.button-54 {
    font-family: "itc-american-typewriter", serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: #086acd;
    background-color: white;
    cursor: pointer;
    border: 3px solid;
    padding: 0.25em 0.5em;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-54:active {
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
  }
  
  @media (min-width: 768px) {
    .button-54 {
      padding: 0.25em 0.75em;
    }
  }