main {
    display: flex;
    justify-content: space-around;
}

#profileImg {
    width: 30vw;
    height: 30vw;

    border-style: solid;
    border-width: 0.5vw;
    border-radius: 16vw;
    padding: 0.5vw;
    border-color:  rgba(123, 174, 169, 1.0);
}

#textArea {
    width: 25vw;
}

h2 {
    padding-top: 0;
}

hr {
    height: 0.3vh;
    border-style: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contactText {
    text-decoration: none;
    color: grey;
    font-size: smaller;
}

@media (max-width: 650px) {
    main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #profileImg {
        width: 60vw;
        height: 60vw;
    
        border-style: solid;
        border-width: 1vw;
        border-radius: 32vw;
        padding: 1vw;
        border-color:  rgba(123, 174, 169, 1.0);
    }

    #textArea {
        width: 75vw;
    }

    h2 {
        padding-top: 10vh;
    }
}

