/* INTERSTITIAL PAGE - STYLES */

* {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #021211;
    color: #BAD7D6;
    font-family: "Jura", Helvetica, sans-serif;
    font-optical-sizing: auto;
}

body {
    background-image: url('../img/cb-bg-desktop.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-frame {
    opacity: 0.02;
    position: fixed;
    top: -25vh;
    right: 0;
    background-image: url('../img/jrcasa_logo.svg');
    background-repeat: no-repeat;
    background-position: center center;
    width: calc(100% + 250px);
    height: 150%;
    overflow: hidden;
    pointer-events: none;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 2rem;
}

.globe {
    max-width: 5.625rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 5rem;
    font-weight: 100;
    margin-bottom: 40px;
    text-align: center;
}

p {
    font-size: 2.1875rem;
    font-weight: 300;
    line-height: 130%;
    text-align: center;
    max-width: 37.5rem;
}

@media (min-width: 1200px) {
    body { 
        background-image: url('../img/cb-bg-desktop.jpg');
    }
}

@media (min-width: 779px) and (max-width: 1199px) {
    body {
        background-image: url('../img/cb-bg-tablet.jpg');
    }

    .globe {
        max-width: 70px;
        margin-bottom: 14px;
    }

    h1 {
        font-size: 4rem;
    }

    p {
        font-size: 30px;
    }
}

@media (max-width: 778px) {
    body {
        background-image: url('../img/cb-bg-mob.jpg');
    }

    .globe {
        max-width: 65px;
        margin-bottom: 12px;
    }

    h1 {
        font-size: 3rem;
    }

    p {
        font-size: 25px;
    }
}