@import "./style.css";

#sec1 {
    height: 150%;
}
#sec1 .content {
    width: 90%;
    height: 100%;
    flex-flow: column-reverse;
    justify-content: space-around;
}

#main-image, #bio-picture {
    width: 100%;
    height: 250px;
    background-color: lightgrey;
}
#main-image {
    width: 100%;
    height: auto;
}

#sec2 .content.centered {
    width: 90%;
    justify-content: center;
}


#sec3 {
    height: 150%;
}

#sec3 .content.centered {
    height: 100%;
}
#sec3 .content.centered .flex.col.sub {
    height: 90%;
}

#sec3 .text-wrapper {
    width: 100%;
    height: 25%;
}

#sec3 h1 {
    color: black
}
#sec3 h2 {
    color: black;
    padding-bottom: 25px;
    border-bottom: 3px solid rgb(32, 172, 32);
    font-weight: bold;
}


@media screen and (max-width: 1000px) and (max-height: 450px) {
    #sec1 {
        height: 175%;
    }
    .content.centered {
        width: 100% !important;
        flex-flow: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }
    .text-wrapper {
        width: 60%;
    }
    #sec3 {
        height: 250%;
    }
    #sec3 .content.centered {
        flex-flow: column !important;
        align-items: flex-start;
    }
    #main-image {
        width: 30%;
        margin-top: 7.5%;
    }
}

@media screen and (min-width: 1100px) {
    #sec1 {
        top: 0px;
        height: 100%;
    }
    #sec1 .content.centered.flex.col {
        width: 90%;
        height: 100%;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }
    #sec1 .text-wrapper {
        width: 30%;
        height: 100%;
    }
    #sec1 .text-wrapper p {
        height: fit-content;
    }
    #main-image {
        width: 60%;
    }

    #sec2 {
        height: 100%;
    }
    #sec2 .content.centered {
        width: 90%;
        height: 100% !important;
        flex-flow: row !important;
        justify-content: space-between;
        align-items: center;
    }
    #bio-picture {
        width: 350px;
        height: 450px;
    }
    #sec2 .text-wrapper {
        width: 65%;
        height: 300px;
        text-align: center;
    }
    #sec3 {
        height: 100%;
    }
    #sec3 .content.centered {
        top: 15%;
        width: 90%;
        height: 70%;
        justify-content: flex-start;
    }
    #sec3 .content.centered .flex.col.sub {
        width: 100%;
        height: 400px;
        flex-flow: row;
    }
    #sec3 .text-wrapper {
        width: 20%;
        height: 400px;
        padding: 2.5%;
        text-align: center;
    }
    .text-wrapper p {
        height: 400px;
    }
}