main {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    max-width: 80%;
    margin: auto;
    margin-top: 4em;
    margin-bottom: 4em;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    justify-content: space-around;
}



img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: -30px 0 0 #8a101f;
    margin: 1em;
    margin-bottom: 1.5em;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

h2 {
    color: #a96036;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.text {
    max-width: 60%;
}

p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;

    margin-bottom: 1em;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive pour petits écrans */
@media screen and (max-width: 700px) {
    img {
        width: 200px;
        height: 200px;
        box-shadow: none;
        border: #8a101f solid 10px;
    }



    main {
        margin: 2em, auto;
        flex-direction: column;

    }

    p {
        font-size: 1em;
    }
}