* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100dvw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ddd9ce;
}

.container {
    width: 95%;
}
.container__header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.7rem;
    margin: 0.7rem 0;
    background-color: #FFFFFF;
    border-radius: 2rem;
}
.header__profile {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center
}
.header__profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.header__info {
    width: 70%;
    padding: 1rem;
}
.header__info p {
    font-size: 0.9rem;
    color: #545454;
}
.info__social {
    padding: 0.5rem 0;
}
.info__social a {
    text-decoration: none;
}
.info__social img {
    width: 20px;
    height: 20px;
}

.container__content {
    border-radius: 2rem 2rem 0 0;
    background-color: #545454;
    min-height: 100dvh;
    height: auto;
}

.presentation {
    width: 75%;
    color: #cccccc;
    text-align: justify;
    margin-top: 0.8rem;
}
.presentation p {
    padding: 0.5rem 0;
}

.content__skills {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
}
.content__informations h3,
.content__skills h3 {
    width: 75%;
    font-size: 1.3rem;
    color: #FFFFFF;
    /* margin-top: 0.3rem; */
}
.content__skills p {
    margin: 0.5rem 0;
}
#skillsProfession {
    width: 75%;
    border-bottom: 1px solid #cccccc;
    color: #ffffff;
    font-size: 1.2srem;
}
#skillsProfessionComment {
    width: 75%;
    margin-top: -3px;
    text-align: justify;
    color: #cccccc;
}
.skills__images {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}
.skills__images img {
    width: 30px;
    height: 30px;
}

.content__informations {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}
.graduation__list {
    width: 75%;
    padding-top: 0.6rem;
    color: #cccccc;
}
.graduation__list li {
    padding-bottom: 0.6rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .info__social img {
        transition: 0.4s;
        filter: gray;
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
    }
    .info__social img:hover {
        filter: none;
        -webkit-filter: none;
    }

    .skills__images img {
        transition: 0.4s;
        -webkit-filter: grayscale(100%);
        filter: gray;
        filter: grayscale(100%);
    }
    .skills__images img:hover {
        filter: none;
        -webkit-filter: none;
        transform: scale(1.2);
    }
    html {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    body {
        width: 90vw;
        height: 100vh;
    }
    .container {
        width: 500px;
        height: 100%;
        border-radius: 1rem;
    }
    .container__content {
        min-height: 78%;
        height: auto;
        border-radius: 2rem;
    }
}