#about {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 80px;
    height: 100%;
}

.infosAbout {
    width: 45%;
    height: 100%;
    color: var(--white-color);
}

.infosAbout h1 {
    letter-spacing: 1px;
    text-align: center;
}

.infosAbout p {
    margin-top: 20px;
    letter-spacing: 0.3px;
    font-size: 20px;
    text-align: justify;
    font-family: 'Oswald', sans-serif;
}

.infosAbout p span {
    font-weight: 800;
}

.blocImageAbout {
    width: 30%;
    height: 100%;
    position: relative;
}

.blocImageAbout img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (width <= 900px) {
    .infosAbout {
        width: 95%;
    }

    .blocImageAbout {
        display: none;
    }
}

@media (width <= 500px) {
    #about {
        margin-top: 20px;
    }
}