* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
    font: inherit;
}

html {
    font-size: 20px;
    height: 100%;
}

body {
    font-family: 'Pitch Sans';
    background: #f1e7f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #cd1d28;
    padding: 8vh 8vw;
}

@font-face {
    font-family: 'Pitch Sans';
    src: url(../fonts/pitch-sans-medium.woff2);
}

img {
    display: none;
    max-width: 100%;
    max-height: calc(100% - 16vh);
}

p {
    text-align: center;
    margin-bottom: 1.2em;
    line-height: 1.2;
}

p.text {
    text-align: center;
    font-size: 1rem;
    margin-top: 1.2rem;
}

p.soon, p.contact {
    font-size: .75rem;
}

a {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

@media (orientation: landscape) {
    .img-desktop {
        display: block;
    }
}
  
@media (orientation: portrait) {
    body {
        padding: 6vh 2.5vw;
    }

    .img-mobile {
        display: block;
    }

    html {
        font-size: 3.5vw;
    }

    p.soon {
        display: none;
    }

    p.soon, p.contact {
        font-size: inherit;
    }    
}