body {
    background: rgb(7, 14, 20);
    background: linear-gradient(90deg, rgba(7, 14, 20, 1) 0%, rgba(0, 39, 50, 1) 100%);
}

.about-me-fold-text {
    width: 56vmin;
    height: 56vmin;
    margin: 1em;
    padding: 0.5em;
}

.about-me-fold-text>h2 {
    text-align: center;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    font-size: 2em;
}

.centerMe {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.foldContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.foldContent>.image {
    width: 40vmin;
    height: 56vmin;
    object-fit: cover;
    object-position: center;
    padding: 1em;
}

@media screen and (max-width: 1000px) {
    .foldContent {
        flex-direction: column;
    }
    .foldContent>.image,
    .about-me-fold-text {
        width: 60vmin;
        height: 85vmin;
    }
    .about-me-fold-text>h2 {
        font-size: 3em;
    }
}

#about-me-list>li {
    padding: 1em;
}

/* SOCIAL MEDIA */

.socials{
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.socials-image{
    width: 5vw;
    height: auto;
    opacity: 60%;
}

#socials-instagram:hover{
    opacity: 100%;
}

#socials-facebook:hover{
    opacity: 100%;
}

#socials-linkedin:hover{
    opacity: 100%;
}

@media screen and (max-width: 1000px){
    .socials{
        width: 100vw;
        gap: 40px;
    }
    .socials-image{
        width: 15vw;
    }
    .about-me-fold-text{
        height: 56vmin;
    }
}