h1 {
    font-size: 6rem;
    color: var(--main-accent-color);
    margin: 0;
}

h2 {
    font-size: 3rem;
    color: var(--main-accent-color);
    margin: 0;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15dvw;
    padding-top: 5rem;
}

.img-container {
    min-height: 25dvh;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-accent-color);
    border-radius: 50%;
    margin: 1rem;
}

.about img {
    width: 15rem;
    object-fit: cover;
}

.MainAdjectifs {
    display: flex;
    gap: 5%;
}

.SubAdjectif {
    flex: 1;
    align-items: center;
}

@media (max-width: 425px) {
    
    .about {
        align-items: normal;
    }

    h1 {
        font-size: 3rem;
    }

    .MainAdjectifs {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .SubAdjectif {
        margin-bottom: 1rem;
    }
}