.about {
    flex: 2;
    display: flex;
    flex-direction: column;
    padding-right: 5vw;
}

.about p {
    font-size: 1.25vw;
}

.about h1 {
    font-size: 2vw;
    font-weight: bold;
    color: #DC0000;
}

.picture {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1vw;
}

#pic {
    background-color: white;
    color: black;
    width: 25vw;
    aspect-ratio: 1 / 1;
}

@media (orientation: portrait) {
    .about p {
        font-size: 1.75vh;
    }

    .about h1 {
        font-size: 3vh;
    }

    .about {
        margin: 2vh;
    }

    #pic {
        width: 30vh;
    }
}