@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,400;0,500&display=swap');

body {
    height: 90vh;
    background-image: url('background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 400;
    overflow: hidden;
}

a {
    color: white;
    text-decoration: none;
}

div.content-page {
    height: 100%;
    width: 95%;
    margin: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    div.content-page {
        margin: 1em;
        width: 92%;
    }
}

div.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

div.header a {
    color: #FFF;
    font-size: 24.889px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.996px;
}

div.header a:hover {
    font-weight: 400;
}

div.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.content h1 {
    font-size: 23.158px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.926px;
    margin: 15px;
}

div.content h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 98%;
    max-width: 600px;
    margin: 15px;
}

@media screen and (max-width: 600px) {
    div.content h2 {
        font-size: 40px;
    }
}

div.content a {
    display: flex;
    height: 48px;
    padding-left: 2em;
    padding-right: 2em;
    margin: 15px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 41px;
    background: #EC671A;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.8px;
}

div.content a:hover {
    background: white;
    color: #EC671A;
}

div.footer {
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.2px;
    padding: 0;
    margin: 0;
}

div.footer a {
    font-size: 22px;
    letter-spacing: 1.1px;
}

@media screen and (max-width: 600px) {
    div.footer {
        text-align: center;
        font-size: 20px;
    }

    div.footer a {
        font-size: 18px;
    }
}