@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #ffffff;
    color: #003366;
    min-height: 100vh;
}

.logo-wrapper {
    display: flex;
    padding: 32px 50px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: auto;
}

.logo {
    width: 180px;
    height: 50.2px;
    max-width: none;
    flex-shrink: 0;
}

.container {
    display: flex;
    padding: 150px 100px;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.message {
    max-width: 500px;
    text-align: center;
    margin: auto;
}

.message h2 {
    display: flex;
    height: 26px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    gap: 8px;
}

.message p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: revert;
}

.message a {
    color: #003366;
    text-decoration: underline;
    font-family: "Nunito Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 24px;
    justify-content: left;
}

.social-icons a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
}

.x-icon {
    display: flex;
    width: 16px;
    height: 22px;
    padding: 2.733px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.illustration {
    width: 328px;
    height: 328px;
    flex-shrink: 0;
    fill: #FFF;
}

@media(min-width: 768px) {
    .content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }

    .message {
        text-align: left;
    }

    .logo-wrapper {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
        padding: 10px;
        margin-top: 61.74px;
    }

    .illustration {
        width: 272.183px;
        height: 271px;
        flex-shrink: 0;
    }

    .logo-wrapper {
        width: 100%;
        padding: 32px 50px;
    }

    .content {
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .message {
        text-align: left;
        max-width: 100%;
    }

    .social-icons {
        justify-content: left;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .message h2 {
        font-family: "Nunito Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    .message p {
        font-family: "Nunito Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
}