/* CUSTOM CSS */

@font-face { font-family: "Futura Condensed Extra Bold"; src: url("/lib/fonts/FuturaCondensedExtraBold.otf") format("truetype"); }

body {
    background-image: url("/img/back-mobile.jpg");
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: top center;
    min-height: 100vh;

    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Futura Condensed Extra Bold', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: calc(1.6rem + 1.5vw);
}

h2 {
    font-size: calc(1.1rem + .6vw);
}


h3 {
    font-size: calc(1.1rem + .6vw);
}

a {
    color: black;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

a:hover {
    color: #444;
    transition: all 0.2s;
}

.corner-top {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/img/top-mobile.png");
    background-repeat: no-repeat; 
    background-position: top center;
    background-size: cover; 
    width: 100%;
    height: 76px;
    z-index: 2;
}

.landing {
    text-align: center;
}

@media (max-width: 639px) {

    h1 {
        margin-bottom: 0;
        text-transform: uppercase;
    }

    h3 {
        margin: 1rem 0 2rem;
    }

    .corner-top img { 
        visibility: hidden;
        display: none;
    }
    .textinfo {
        visibility: hidden;
        display: none;
    }
}



@media (min-width: 640px) {
    body {
        background-image: url("/img/back-desktop.jpg");
        background-repeat: no-repeat; 
        background-size: cover; 
        background-position: top center;
        min-height: 100vh;

        margin: 0;
        padding: 0;
    }

    h1 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }


    .container-fluid {
        padding: 0;
        margin: 0;
        z-index: 1;
    }

    .corner-top {
        position: absolute;
        top: 0;
        left: 0;
        background-image: url("/img/corner-top.png");
        background-repeat: no-repeat; 
        background-position: top left;
        padding: 2rem 1rem;
        width: 220px;
        height: 220px;
        z-index: 2;
    }

    .landing {
        text-align: center;
        padding-top: 1rem;
        position: relative;
        z-index: 3;
    }

    .textinfo {
        position: relative;
        top: -3rem;
    }
    .textinfo-mobile {
        visibility: hidden;
        display: none;
    }
}

@media (min-width: 768px) {

    .textinfo {
        top: -5rem;
    }

    h1 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

}


@media (min-width: 1024px) {

    .textinfo {
        top: -8rem;
    }
    
    h1 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}