*{
    margin: 0;
    padding: 0;
    
    text-decoration: none;
    box-sizing: border-box;
}
h1{
    text-align: center;
    font-size: 2rem;
}
header{
    background-color: rgb(209, 209, 209);
    color: aliceblue;
}
section{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.gestion , .produit{
    background-color: blueviolet;
    box-shadow: 10px 5px 5px #2e2d2d;
    border-radius: 5px;
    margin: 5px 5px 5px 0;
    text-align: center;
    height: 80px;
    width: 100px;
    white-space: normal;
    
 }   
 p{
    word-wrap:break-word;
    
 }
 a{
    color: azure;
 }
 .menu2{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px;
    width: 90%;
    
}
 .box{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px;
    border:1px solid black ;
    border-radius: 5px;
    background-color: #8d8b8b;
 }
