html {
    padding: 0;
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    height: 100%;
}

body {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2fafe;
    min-height: 100%;
}

.logo {
    font-size: 0;
    margin-bottom: 60px;
    max-width: 100%;
    height: 50px;
}

h1, h2, h3 {
    padding: 0;
    color: #1c1c1c;
    font-weight: bold;
    line-height: 1;
}

h1 {
    font-size: 60px;
    margin: 0 0 60px 0;
}

h2 {
    font-size: 30px;
    margin: 0 0 15px 0;
}

p {
    color: #1c1c1c;
    line-height: 30px;
    padding: 0;
}

a {
    color: #1c1c1c;
}

.socials {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 30px;
}

.socials .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0097e2;
    border-radius: 25px;
}

.socials .social-link svg {
    color: #fff;
    width: 20px;
    height: 20px;
}

.container {
    max-width: 1000px;
    z-index: 1;
}

@media screen and (max-width: 1600px) {
    html, body {
        font-size: 17px;
    }

    .logo {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    h1 {
        margin: 0 0 50px 0;
        font-size: 50px;
    }

    p {
        line-height: 29px;
    }

    .container {
        max-width: 664px;
    }
}

@media screen and (max-width: 1400px) {
    html, body {
        font-size: 16px;
    }

    .logo {
        margin-top: 44px;
        margin-bottom: 44px;
    }

    h1 {
        margin: 0 0 44px 0;
        font-size: 44px;
    }

    p {
        line-height: 26px;
    }

    .container {
        max-width: 584px;
    }
}

@media screen and (max-width: 767px) {

    html, body {
        text-align: left;
    }

    .container {
        max-width: unset;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .background {
        width: 150%;
        left: unset;
    }

    .socials {
        justify-content: flex-start;
    }
}