/* ===================== GENERAL & RESET */
/* roboto-condensed-200 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/roboto-condensed/roboto-condensed-v27-latin-200.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-condensed/roboto-condensed-v27-latin-200.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-condensed-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-condensed/roboto-condensed-v27-latin-regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-condensed-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-condensed/roboto-condensed-v27-latin-500.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-condensed/roboto-condensed-v27-latin-500.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}





body {
    font-family: 'Roboto Condensed';
    margin: 0;
    padding: 0;
    background-image: url("../images/background-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    font-size: 18px;
    transition: background-image 1s ease-in-out;
}

main {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}






/* ===================== CENTRAL BOX */
.landing {
    width: 80%;
    padding: 30px;

    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
}






/* ===================== TYPOGRAPHY */

h1,
h2,
h3,
h4 {
    margin: 0;
}

h1 {
    font-weight: 200;
}

h1 span {
    font-weight: 400;
}


h2 {
    font-weight: 400;
}

h1+h2 {
    margin-top: 15px;
}

h2+h3 {
    margin-top: 15px;
}

h3 {
    margin-bottom: 20px;
    font-weight: 400;
}


h4 {
    margin-bottom: 40px;
    font-weight: 500;
}






/* ===================== BUTTONS */
.button {
    background-color: transparent;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 16px 23px;
    position: relative;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button+.button {
    margin-top: 30px;
}

.button i {
    font-weight: 300;
}

.button:hover,
.button:active {
    outline: 0;
}

.button:hover {
    background-color: transparent;
    cursor: pointer;
}

.button:before {
    content: "";
    height: calc(100% + 3px);
    position: absolute;
    right: -7px;
    top: -9px;
    transition: background-color 300ms ease-in;
    width: 100%;
    z-index: -1;
}

@media (min-width: 768px) {
    .button {
        padding: 16px 32px;
    }
}



/* BUTTON: DOWNLOAD */
.button.button-download {
    border: 1px solid #266DB6;
    color: #fff;
}

.button.button-download::before {
    background-color: #345683;
}

.button.button-download:hover:before {
    background-color: #658ab8;
}



/* BUTTON: DOWNLOAD */
.button.button-mail {
    border: 1px solid #266DB6;
    color: #fff;
}

.button.button-mail::before {
    background-color: #345683;
}

.button.button-mail:hover:before {
    background-color: #658ab8;
}








/* =================================================== MEDIA QUERIES */
@media (min-width: 1280px) {

    .landing {
        width: 50%;
        padding: 45px;
    }



    h1+h2 {
        margin-top: 10px;
    }

    h3 {
        margin-bottom: 30px;
    }

    h2+h3 {
        margin-top: 35px;
    }

    h4 {
        margin-bottom: 60px;
    }

}


@media (min-width: 1440px) {

    .landing {
        width: 35%;
        padding: 60px;
    }

    h3 {
        margin-bottom: 30px;
    }

    h4 {
        margin-bottom: 60px;
    }

}