
* {
    margin: 0;
}

/* ----------------------TITRE -------------------------------- */
h1{
    font-family: 'Montserrat', sans-serif;
    color: #A5B4FC;
    font-size: 3em;
    padding: 20px;
    margin: 10px;
}
h2{
    font-family: 'Montserrat', sans-serif;
    color: #242424;
    font-size: 2em;
    padding: 20px;
    margin: 10px;
}
.titreHero{
    font-family: 'Montserrat', sans-serif;
    color: #A5B4FC;
    font-size: 2em;
    padding: 20px;
    margin: 10px;
}
/* ----------------------PARAGRAPHE -------------------------------- */
p{
    font-family: 'Manrope', sans-serif;
    color: #F9F8FF;
    font-size: 1.1em;
    
    margin: 10px;
    padding: 20px;
}
.paraProduit{
    font-family: 'Manrope', sans-serif;
    color: #040404;
    font-size: 1.1em;
    
    margin: 10px;
    padding: 20px;
}
/* ----------------------Autre Balise HTML -------------------------------- */
body{
    background-color:#1F2039; 
}
img{
    max-width: 100%;
    height:auto;
}

strong{
    font-weight: 700;
    font-size: 1.1em;
    color: #A5B4FC;
}
a{
    font-family: 'Manrope', sans-serif;
    color: #ABB0C9;
    font-size: 1.2em;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
li{
    font-family: 'Manrope', sans-serif;
    color: #F9F8FF;
    font-size: 1.1em;
}

/* ----------------------STRUCTURE -------------------------------- */
header{
    display:flex;
    background-color: white;
    height: 50px;
    padding: top 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
}
nav{
    display:flex;
    background-color: white;
    justify-content: flex-end;
    padding-bottom: 5px;  
    padding-left: 40px;
    padding-right: 40px;
}
.navLien{
    color: #242424;
    padding-left: 10px;
}
.navLien:hover{
    text-decoration: underline;
}

main{
    display:flex;
    flex-direction: column;
    align-items: center;
}
section{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 40%;
    min-width: 300px;
    padding: 30px;
    margin: 20px;

}
.hero{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.produit{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: white;
}
footer{
    display:flex;
    justify-content: flex-end;
    background-color: white;
    padding: top 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
}

/* ---------------------- CLASS -------------------------------- */

.button {
    background: linear-gradient(#8E86B5, #ACAEED);
    border-radius: 10px;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.3em;
    margin: 4px 2px;
    cursor: pointer;
}
.button:hover{
    background: linear-gradient(#696484, #8788BA);
    text-decoration: none;
}
/* ----------------------ID -------------------------------- */

#logo {
    width : 50px;
    height : 50px;
    }
#logo:hover{
    opacity: 0.5;
}

#icon{
    width : 30px;
    height : 30px;
    padding: 5px;
}
#icon:hover{
    opacity: 0.5;
}
/* ---------------------- MEDIA SCREEN 960-------------------------------- */

@media screen and (max-width: 1000px) {
    /* Vos règles CSS ici */
  
    section{
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 90%;
        min-width: 300px;
        padding: 30px;
        margin: 20px;
    
    }
    .navLien{
        color: #242424;
        padding-left: 10px;
        font-size: 2em;
    }
    .button {
        font-size: 2em;
    }
}