main {
    display: block;
    position: relative;
}

.centerText {
    width: 100%;

    align-items: center;
    /* display: flex; */
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

h2 {
    text-transform: uppercase;
}

.enTete {
    display: flex;
    width: 100%;
    align-items: center;
}

.imgEnTete {
    height: 35em;
}

.imgProducts {
    height: 20em;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 500px 500px 0 0;
}

.filAriane {
    margin: 2em;

}

.textAriane {
    text-decoration: none;
    margin: 0.2em;
}

.textAriane a {

    color: grey;
}

.card {
    background-color: rgba(255, 255, 255, 0.40);
    align-items: center;
    width: 20em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    justify-content: space-evenly;
    border-radius: 500px 500px 0 0;
    box-shadow: -30px 0 0 #8a101f;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    padding: 2em;
    margin: 2em;
}

.products {
    max-width: 100%;
    padding: 2em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 2em; */
}

article {
    /* width: 100%; */
    height: 100%;
    /* margin: 3%; */
    display: flex;
    flex-direction: column;
    align-items: center;

}


.button {

    text-decoration: none;
    color: #f6f0e0;
    background-color: #8a101f;
    padding: 10px 20px;
    text-transform: capitalize;
    font-size: large;
    font-weight: bold;
    margin: 20px;
    border-radius: 50px;
    border: none;
}

button:hover {
    background-color: #b75a48;

}

button:hover a {
    color: #f6f0e0;
}

button:focus {
    outline: 2px solid blue;
}

.imgPhone {
    display: none;
}

@media only screen and (max-width: 700px) {

    main {
        max-width: 100%;
        padding: 2em;
    }

    .products {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding-top: 0%;
        padding: 0%;
    }

    .card {
        width: 15em;
        padding: 1em;

    }

    .enTete {
        max-width: 100%;
        align-items: center;
        /* margin: 1em 2em 1em 2em; */
    }

    .imgEnTete {
        display: none;
    }

    .imgPhone {
        display: flex;
        height: 20em;
        object-fit: cover;
        margin: auto;

    }


}