

.about-me-section {
    display: grid;
    margin: auto auto 2rem auto;
    max-width: 1260px;
    justify-self: center;
    align-self: center;
    
}

.profile-picture {
    width: 275px;
    height: 275px;
    margin: 1.5rem;
    border-radius: 50%;
    shape-outside: none;
    background-color: black;
    display: flex;
    margin: auto;
    align-content: center;
}
p > img {
    margin-bottom:3rem !important;
}

.about-me-text > p, h1{
    width: 100%;
    float: left;
    margin: auto auto 2rem auto;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem !important;
}

@media screen and (min-width: 960px) {
    .profile-picture {
            width: 400px;
            height: 400px;
            margin: 1.5rem;
            border-radius: 50%;
            float: right;
            shape-outside: circle(50%);
            background-color: black;
            display: flex;
            align-content: none;
        }

        .about-me-text>p,
        h1 {
            width: 100%;
            float: left;
            margin: auto auto 2rem auto;
            text-align: left;
            padding: 1rem;
        }

    }