.aboutMeGrid {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 60vw;
    height: min-content;
    background-color: rgb(11, 20, 29);
    color: white;
    padding: 20px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
}

h2 {
    font-size: xx-large;
    color: rgb(241, 194, 50);
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}

.profilePic {
    text-align: center;
}

.profilePic img {
    margin-top: 73px;
    width: 80%;
    max-width: 500px;
    text-align: center; 
    box-shadow: 5px 5px 0px 2px #000000;
}

/* Mobile device settings */
@media (max-width: 768px) {
    .aboutMeGrid {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        width: 80vw;
    }
}
