.mainAboutMe{
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 1.5%;
    grid-gap: 2em;
}

.leftGridAboutMe{
    display: grid;
    grid-template-rows: 1fr 4fr 2fr 2fr;
    grid-gap: 10px;
    max-height: 80vh;
}

.myName{
    background-color: var(--darkGray);
    display: flex;
    justify-content: space-between;
    padding: 1em;
    border-radius: 20px;
    align-items: center;
}

.myNameIs{
    font-size: 14pt;
    font-weight: 500;
    color: var(--lightGray);
}

.myNameUnder{
    font-size: 16pt;
    font-weight: bold;
}

.photoAndSocialsAboutMe{
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.meImgBox{
    background-color: var(--yellow);
    border-radius: 30px;
    max-height: 300px;
    justify-self: start;
}

.linksAboutMe{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 2em;
    justify-self: end;
}

.linksAboutMe a{
    text-decoration: none;
}

.linksAboutMe img{
    background-color: var(--darkGray);
    --padding: 20px;
    --size: calc(100px + var(--padding));
    max-height: var(--size);
    max-width: var(--size);
    padding: var(--padding);
    border-radius: 20px;
}

.colorDivBac{
    background-color: var(--magenta);
    border-radius: 20px;
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.colorDivBac img{
    max-width: 100px;
    justify-self: center;
    align-self: center;
}

.bacTextAboutMe{
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    font-weight: 600;
}

.colorDivBut{
    background-color: var(--lightBlue);
    border-radius: 20px;
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.colorDivBut img{
    max-width: 100px;
    justify-self: center;
    align-self: center;
}

.butAboutMe{
    margin-top: 2%;
}

.butTextAboutMe{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    font-weight: 600;
}

.butTextAboutMe span{
    text-align: center;
}

.rightGridAboutMe{
    background-color: var(--darkGray);
    padding: 2em;
    border-radius: 20px;
    max-height: 100%;
    overflow-y: auto;
}

.topAboutMeHome{
    margin-bottom: 1em;
}
.aboutMeHomeTitle{
    font-size: 20pt;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px){
    .mainAboutMe{
        grid-template-columns: 1fr;
        margin: 4%;
    }

    .meImgBox{
        max-height: 250px;
    }

    .colorDivBut, .colorDivBac{
        font-size: 11pt;
    }

    .colorDivBac img, .colorDivBut img{
        max-width: 80px;
    }

    .leftGridAboutMe{
        grid-gap: 2%
    }

}
