/* -- ABOUT ME -- */
@media only screen and (min-width: 0px) {
    #aboutMe {
        text-align: center;
    }
    #aboutMe img {
        width: clamp(0px, 100%, 500px);
        height: auto;
        border-radius: 50px;
    }
    #aboutMeContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
}
@media only screen and (min-width: 768px) {
    #aboutMe {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        align-items: center;
        justify-items: center;
    }
}

/* -- STACK -- */
@media only screen and (min-width: 0px) {
    #stack {
        display: flex;
        flex-direction: column;
    }
    #stack img {
        width: 100%;
        height: auto;
    }
}
@media only screen and (min-width: 768px) {
    #stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-items: center;
    }
}

/* -- CHARITY -- */
@media only screen and (min-width: 0px) {
    #community {
        text-align: center;
    }
    #community img {
        margin-top: 2rem;
        width: 100%;
        height: auto;
    }
    #communityContent {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    #communityContent a  {
        align-self: center;
    }
}
@media only screen and (min-width: 768px) {
    #community {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        align-items: center;
        justify-items: center;
    }
    #communityContent {
        grid-column: 2;
    }
    #community img {
        margin-top: 0;
        grid-row: 1;
        width: 80%;
    }
}