@import "./style.css";

#sec1 {
    height: 200%;
}
#sec1 .content.centered {
    position: relative;
    top: 0px;
    height: 100%;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start !important;
}
.text-wrapper {
    position: relative;
    height: fit-content;
    text-align: center;
}
.textbox {
    position: relative;
    width: 90%;
    margin-top: 5%;
    padding: 5%;
    background-color: lightgrey;
    border-radius: 10px;
}
img {
    position: relative;
    width: 100%;
    margin-top: 5%;
    height: auto;
    border-radius: 10px;
}
@media screen and (min-width: 1100px) {
    #sec1 .content.centered {
        height: 100%;
        justify-content: space-between;
        align-items: center !important;
        flex-flow: row;
    }
    .textbox {
        width: 400px;
        margin-top: 25px;
        text-align: left;
    }
    img {
        margin: 0;
        width: 400px;
        height: auto;
    }
}