/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CUSTOM */

.flex {
    display: flex;
}

.container-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("img/bg-landing.png");
    background-size: cover;
    font-family: 'Red Hat Display', sans-serif;
}

header {
    height: 70px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
}

header img {
    width: 70px;
    display: block;
    margin: auto 0 auto 30px;
}

h1 {
    font-size: 110px;
    font-family: 'Lato', sans-serif;
    margin-bottom: 30px;
}

.buttons-dl img {
    width: 200px;
}

.container-content {
    display: flex;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    padding: 4%;
    border-radius: 4px;
}

.screens {
    width: 45%;
    margin-left: 60px;
}

.text-presentation {
    margin: 30px 0;
    font-size: 22px;
    font-weight: 500;
    text-shadow: 0 0 1px #666666;
}

@media screen and (max-width: 1500px) {
    .container-content {
        padding: 3%;
        margin: 0 20px;
    }
    .screens {
        width: 40%;
    }
}

@media screen and (max-width: 1100px) {
    .container-content {
        flex-direction: column;
        padding-top: 80px;
    }

    .screens {
        width: 65%;
        margin-left: 0;
        margin-top: 30px;
    }

    .buttons-dl {
        width: fit-content;
        margin: 0 auto;
    }

    .buttons-dl img {
        width: 130px;
    }

    .text-presentation {
        font-size: 17px;
    }

    h1 {
        font-size: 60px;
    }

    header {
        height: 40px;
    }

    header img {
        width: 40px;
        margin: 0;
    }
}

@media screen and (max-width: 580px) {
    .text-presentation {
        font-size: 14px;
        margin: 20px 0;
    }

    .container-content {
        padding: 5%;
    }
}