.main {
    margin: auto 35em;
}

.logo {
    min-height: 50px;
    max-height: 100px;
    border-radius: 30px;
}

.header {
    text-transform: uppercase;
    font-size: 3em;
    font-weight: bold;
}

.image {
    width: 45vw;
    height: 90%;
}

.text-center {
    text-align: center;
}
.credits {
    margin-bottom: 1em;
    font-size: 1em;
}

.author {
    display: flex;
    align-items: center;
    gap:1em;
}
.author-image {
    border-radius: 50%;
    max-width: 120px;
}

.banner {
    border-radius: 30px;
}

.paragraph {
    font-size: 2em;
    text-align: justify;
    line-height: 150%
}

.list {
    background: #f1f2fa;
    padding: 20px;
    border-radius: 5px;
    border-bottom: 5px solid #b6cee6;
    margin: 0 auto 20px;
}

.ul-list {
    list-style-type: none; !important;
    padding: 5px;
}

.overwhelming {
    margin-bottom: 20px;
    margin-top:20px;
    font-size: 28px;
    line-height: 120%;
    background-color: #fbe5ff;
}

.button {
    color: #fff;
    background-color: #000;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 30px;
    margin-top: .5em;
    padding: 1em 3em;
    font-family: Montserrat, sans-serif;
    font-size: 2em;
    font-weight: 600;
    line-height: 100%;
    transition: all .4s;
    display: inline-block;
}

.center {
    margin: auto;
    text-align: center;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    margin-top: 3em;
    flex-direction: column;
    padding: 2em 15em;
    font-size: 1em;

}
.disclaimer {
    font-size: small;
    line-height: 120%;
    margin-bottom: 2em;
}

.links {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    display: flex;
}
.link {
    color: #fff;
}
@media (max-width: 1700px) {
    .main {
        margin: auto 12em;
    }

    .image {
        width: 65vw;
    }

    .paragraph {
        font-size: 1.3em;
        line-height: 120%;
    }
}

@media (max-width: 1279px) {
    .main {
        margin: auto 5em;
    }

    .image {
        width: 65vw;
    }

    .paragraph {
        font-size: 2em;
        line-height: 120%;
    }
}

@media (max-width: 991px) {
    .main {
        margin: auto 3em;
    }

    .image {
        width: 90vw;
    }
    .header {
        font-size: 1.5em;
    }

    .paragraph {
        font-size: 1.3em;
        line-height: 120%;
    }
}

@media (max-width: 767px) {
    .main {
        margin: auto 1em;
    }
    .footer {
        padding: 1.5em;
    }
    .logo{
        width: 100%;
    }
    .button {
        font-size: 0.7em;
    }
    .footer {
        font-size: 0.5em;
    }
}