body{
    background-color: #3B3C36;
}

h1{
    text-align: center;
    font-weight: 600;
    font-size: 80px;
}

p{
    text-align: center;
    font-size: 36px;
}

.greetingArticle > h1, .greetingArticle > p, .greetingArticle > a, .whyArticle > h1, .whyArticle > p, .statsArticle > div, .statsArticle > h1, .finalArticle > h1, .finalArticle > p, .finalArticle > form{
    margin-top: 125px;
}

header{
    background: linear-gradient(90deg, #121212, #3B3C36);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

header > img{
    margin-left: auto;
    margin-right: auto;
}

.greetingArticle {
    background: linear-gradient(90deg, #39A78D, #20FC8F);
    background-size: 300% 300%;
    animation: gradientAnimation 8s ease infinite;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

.greetingArticle > a{
    text-decoration: none;
    color: white;
    background-color: #121212;
    font-size: xx-large;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
    margin-bottom: 125px;
}

.greetingArticle > a:hover{
    transition: all 0.3s;
    filter: invert(1);
}

.greetingArticle > a:active{
    transition: all 0.3s;
    transform: scale(0.9);
}

.whyArticle{
    background: linear-gradient(90deg, #3B3C36, #121212);
    background-size: 300% 300%;
    animation: gradientAnimation 8s ease infinite;
    display: flex;
    flex-direction: column;
    color: white;
    min-height: 70vh;
}

.reasonsArticle{
    padding-top: 50px;
    padding-bottom: 50px;
}

.reason{
    color: white;
    text-align: center;
    background-color: #20FC8F;
    border-radius: 15px;
    border: #3B3C36 solid 3px;
    transition: all 0.3s;
}

.reason:hover{
    transition: all 0.3s;
    border-color: inherit;
}

.reason > img, .reason > h2, .reason > p{
    margin-top: 25px;
}

.reason > h2{
    font-weight: 600;
}

.reason > p{
    font-size: x-large;
}

.si, .be{
    background: linear-gradient(90deg, #39A78D, #20FC8F);
}

.cr, .fr{
    background: linear-gradient(-90deg, #39A78D, #20FC8F);
}

.statsArticle{
    background: linear-gradient(90deg, #121212, #3B3C36);
    background-size: 300% 300%;
    animation: gradientAnimation 8s ease infinite;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 40vh;
}

.statsArticle > div{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    margin-bottom: 125px;
}

.stat{
    width: 33%;
}

.stat > h2{
    font-size: 55px;
    font-weight: 700;
}

.finalArticle{
    background: linear-gradient(-90deg, #39A78D, #20FC8F);
    background-size: 300% 300%;
    animation: gradientAnimation 8s ease infinite;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.finalArticle > form{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 125px;
}

label[for="floatingInput"]{
    color: white !important;
}

form > div{
    width: 35%;
}

form > button{
    height: 58px;
    margin-left: 10px;
}

footer > p{
    font-size: medium;
}

@media (min-width: 576px) AND (max-width: 991px) {
    h1{
        font-size: 48px;
    }

    p{
        font-size: 28px;
    }
    
    .si, .cr, .se{
        background: linear-gradient(90deg, #39A78D, #20FC8F) !important;
    }

    .fa, .be, .fr{
        background: linear-gradient(-90deg, #39A78D, #20FC8F) !important;
    }
}

@media (max-width: 575px){

    h1{
        font-size: 48px;
    }

    p{
        font-size: 28px;
    }

    .reason{
        background: linear-gradient(90deg, #39A78D, #20FC8F, #39A78D) !important;
    }

    .statsArticle > div{
        flex-direction: column;
        margin-bottom: 50px;
    }

    .stat{
        margin-left: auto;
        margin-right: auto;
        margin-top: 35px;
        margin-bottom: 35px;
        width: 100%;
    }

    .finalArticle > form{
        flex-direction: column;
    }

    form > button{
        height: 58px;
        margin-left: auto;
        margin-right: auto;
        width: 85%;
    }

    form > div{
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
