* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    min-height: 100dvh;
    padding-top: 100px;
}

.main {
    max-width: 1200px;
    display: flex;
    width: 100%;
    /*justify-content: center;*/
    align-items: center;
    flex-flow: column wrap;
    padding: 25px;
}

.page-title h1 {
    margin-top: 1em;

    font-size: 2.8rem;
    margin-bottom: 1.2em;
    text-align: center;

}

.bio-text {
    width: 100%;
    font-size: 1.2em;
    text-align: justify;
}

@media (max-width: 650px) {
    .bio-text {
        font-size: 1.1rem;
    }
}
.bio-text img {
    float: left;
    width: 350px;
    height: auto;
    margin-right: 1em;
    white-space: pre-line;
}


@media (max-width: 650px) {
    .bio-text img {
        width: 300px;
    }
}
@media (max-width: 600px) {
    .mobile-img {
        display: block !important;
        height: auto !important;
        margin-bottom: 30px;
        width: 300px;
    }
    .bio-text img {
        display: none;
    }
}
.mobile-img {
    display: none;
}
@media (max-width: 320px) {
    .mobile-img {
        width: 100% !important;
    }
    /*.bio-text {*/
    /*    font-size: 1.3rem;*/
    /*}*/
}
@media (max-width: 300px) {
    h1{
        font-size: 2.8rem !important;
    }
}

textarea {
    width: 100%;
}






