@charset "utf-8";

#aboutArticle {
    background-color: white;
    width: 75vw;
    display: block;
    margin: auto;
    border: 4px solid black;
    border-radius: 30px;
}

#aboutArticle h1 {
    font-size: 48pt;
    text-align: center;
    border-bottom: 3px solid black;
    width: 40vw;
    display: block;
    margin: auto;
    margin-bottom: 40px;
}

#aboutArticle p {
    width: 35vw;
    float: left;
    padding-left: 30px;
}

#aboutArticle img {
    float: right;
    margin: 1vw;
    width: 30vw;
    display: block;
}

@media screen and (max-width: 900px) {
    #aboutArticle img {
        float: none;
        width: 80%;
        margin: auto;
    }
    
    #aboutArticle p {
        width: 80%;
    }
}