body {
    height: 100vh;
}

.main-section {
    max-height: 100vh;
    padding-top: 21vh;
    padding-bottom: 15vh;
    margin-left: 6vw;
    padding-right: 8vw;
    display: flex;
    flex-direction: row;
}

.about-me-text-zone {
    min-height: 100%;
    width: 61%;
    display: flex;
    flex-direction: column;
}

.about-me-text-zone p {
    font-weight: 600;
}

#about-me-header {
    font-family: Arial Bold, sans-serif;
    font-size: 5vw;
    color: #EA1B21;
    line-height: 1.7;
    font-weight: 700;
    padding-top: 1vh;
}

.smurf-picture {
    max-height: 100%;
    width: 39%;
    display: flex;
    justify-content: center;
    margin-left: 2vh;
}

.smurf-picture img {
    width: 90%;
    height: auto;
}

@media screen and (max-width: 800px) {
    .main-section {
        flex-direction: column;
        padding-top: 6vh;
        padding-bottom: 2vh;
    }

    .about-me-text-zone {
        min-height: inherit;
        width: 100%;
    }

    #about-me-header {
        font-size: 8vw;
    }

    .smurf-picture {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 3vh;
    }

    .smurf-picture img {
        width: 40%;
    }
}