html{
    background-color: #310055;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh; /* a changer mettre une div et centrer element manuellement*/
}
section{
    height: 28em;
    width: 80%;
}
h1{
    color: white;
    width: 100%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5em;
    margin-top: 400px;
}
ul{
    margin-top: 100px ;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
li{
    background-color: white;
    box-shadow: 5px 5px 10px 0px #D283FF;
    border-radius: 30px;
    padding: 10px;
    list-style-type: none;

}
a{
    color: black;
    text-decoration: none;
}
li:hover {
    background-color: #ff0000;
}