/* Fonts */


@font-face {
  font-family: "Review-Bold";
  src: url("/fonts/Review-Bold.woff") format("woff");
}


body {
    padding-left: 3.125vw;
    padding-top: 1vw;
    margin: 0;
}

h1 {
    font-family: "Review-Bold";
    color: black;
    font-size: 8.8vw;
    margin-top: 0;
    margin-bottom: 1vw;
    line-height: 9vw;
    text-transform: uppercase;
}

h2 {
    font-family: "Review-Bold";
    color: black;
    font-size: 8.8vw;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.25vw;
    -webkit-text-stroke-color: black;
    margin-top: 0;
    margin-bottom: 2vw;
    line-height: 9vw;
}

p, span, a {
    color: black;
    font-family: "Review-Bold";
    font-size: 2.6vw;
    margin-top: 0;
    margin-bottom: 1vw;
    letter-spacing: 0.1vw;
    text-decoration: none;
}


@media (min-width: 769px) {
     .mobile_only {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .desktop_only {
        display: none;
    }
    
    body {
        padding: 0;
    }
    
    .container {
        padding: 15px;
        height: calc(100vh - 70px);
    }
    
    h1, h2 {
        font-size: 65px;
        margin-bottom: 20px;
        line-height: 80px;
    }
    
    h2 {
        -webkit-text-stroke-width: 2px;
    }
    
    p, span, a {
        font-size: 22px;
        margin-bottom: 10px;
        letter-spacing: 0;
    }
}