@import "./style.css";

#sec1 .text-wrapper {
    text-align: center;
}
#sec2 {
    height: 150%;
}
#sec2 .content.centered {
    height: 100%;
    text-align: center;
}
#sec2 .subtitle {
    color: blue;
}
#sec3 .content.centered {
    justify-content: space-evenly;
    text-align: center;
}


@media screen and (max-width: 375px) {
    #sec1 {
        height: calc(100% - 50px) !important;
    }
    #sec2 {
        height: 100%;
    }
}

@media screen and (min-width: 568px) and (max-width: 853px) and (max-height: 393px) {
    #sec2 {
        height: 400%;
    }
}

@media screen and (min-width: 1100px) {
    #sec1 .content.centered {
        height: 100%;
        align-items:  center;
    }
    .text-wrapper.centered {
        width: calc(100% - 50px);
        height: 350px !important;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 2px 2px 20px lightgrey;
        justify-content: space-evenly;
        text-align: center;
    }
    .text-wrapper.centered h1.title {
        width: 100% !important;
        margin: 0px auto;
        text-align: center;
    }

    #sec2 {
        height: 100%;
    }
    #sec2 .content.centered {
        width: 100%;
        height: 100%;
        justify-content: space-evenly;
    }
    #sec2 .content.centered .flex.row {
        justify-content: space-between;
    }
    #sec2 .col {
        width: 27.5%;
    }
    #sec2 .content.centered.flex.row.rev {
        flex-flow: row-reverse;
    }
    #sec2 .text-wrapper {
        width: 40%;
    }
    #sec2 .content.centered.flex.row.rev h1, #sec2 .content.centered.flex.row.rev p {
        width: 100% !important;
        text-align: right !important;
    }

    #sec3 {
        height: 50%;
    }
    #sec3 .content.centered.flex.col {
        width: 100%;
        height: 100% !important;
        justify-content: space-evenly;
    }
    #sec3 h1 {
        margin-top: 0px;
    }
}