*{
    box-sizing: border-box;
}
ul li:hover{
    color: white;
}

.sousMenu{
    display: none;
    background-color: #fadbd8;
    position: absolute;
    padding: 20px;
    width: 100%;
    border: 1px solid grey;
    border-radius: 10px;
    margin-top: 1.5%;
    left: 0;
}

ul li:hover .sousMenu{
    display: block;
    color: black;
}

nav > ul > li{
    display: inline-block;
    padding: 20px;
    background-color:  #ec7063;
    border: 2px solid grey;
    border-radius: 10px;
}
article{
    background-color: white;
    border: 1px solid grey;
    border-radius: 10px;
    padding: 10px;
    width: 80%;
    margin-top: 1%;
    left: 0;
}
h3{
    text-align: center;
    font-family: Garamond;
    text-shadow: black 1px 0 5px;
}