* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background-color: #EDF2F7;
}

.logo {
    width: 360px;
    max-width: 80%;
    margin-bottom: 1rem;
}

.heading {
    font-size: 26px;
    color: rgb(0, 107, 137);
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    margin: 0.75rem 0 1.5rem 0;
    text-align: center;
}

.description {
    font-size: 21px;
    color: rgb(0, 107, 137);
    font-family: Roboto !important;
    margin: 0.5rem 0;
    text-align: center;
    line-height: 1.8;
}

.description a {
    font-weight: bold;
    color: rgb(0, 107, 137) !important;
    text-decoration: underline !important;
}

.eddie {
    width: 50% !important;
    margin-top: 1rem;
}

.on-mobile {
    display: none;
}

.on-desktop {
    display: block;
}


@media (max-width: 767px) {
    .logo {
        width: 80%;
    }

    .heading {
        font-size: 21px !important;
        margin-bottom: 1rem;
    }

    .description {
        font-size: 16px !important;
    }

    .eddie {
        margin-top: 1.5rem;
        width: 70% !important;
    }

    .on-mobile {
        display: block;
    }

    .on-desktop {
        display: none;
    }
}