body {
    width: 90% ; 
    height : 100vh;
    margin: 0 5%; 
    background-image: linear-gradient(to top, #d299c2 0%, #fef9d7 100%);
}

.add{
    width: 25px;
    height: 25px;
}

/* ---------- Message ----------------------------------------------------*/


.erreur, .message {
    font-size:1em;
    display: block;
}
.erreur ul{
    list-style: none square;
}

.erreur{ 
    background-color:rgb(237,210,229);
    color:rgb(203,28,128);    
}
.message{ 
    background-color:rgb(99, 184, 255);
    color:rgb(0,0,205);    
}

/* ---------- Entete ----------------------------------------------------*/
header {
    display:flex;
    align-items: center;
    
}

header img{
    width: 200px;
    
}

#menu li {
    list-style-type: none;
    list-style-image:none;
    float: left ; 
    text-align: center;
    width: 250px;
    border: 1px solid rgb(5, 0, 102) ; 
    margin-right: 1px ; 
    color: #f1ec88 ; 
    background: #ffffaa;
    border-radius : 5px;
}

#menu li a , #categories li a {
    text-decoration:none;
}

/* ---------- Jeux ----------------------------------------------------*/

#visite {
    display: flex;
}

#visite aside ul{
    display: flex;
    flex-direction: column;
    width: fit-content;  
}

#visite aside ul li {
    list-style: none;
    border:1px solid rgb(5, 0, 102);
    width:100px;
    text-align:center;
    background:#a0cbf2;
}

#visite section {
    width: fit-content;
    display: flex;
}

#visite section article {
    margin: 5px;
    padding: 5px;
    width: 200px;
}


#visite section article > img{
    width: 100%;
    height: auto;
}



/* ---------- Formulaire ----------------------------------------------------*/

fieldset {
    display:block;
    width:50%;
    border: 1px dotted #353535;
    padding:5px;
    overflow:hidden;                   
}

label {
    background:transparent none;
    display: block;
    width: 20%;
    float: left;
    padding-right: 1%;
    text-align: left;
}

input {
    margin-left: 1%;
    width: 30%;
    border: #CCC 1px solid;
}

input:hover, #ent input:focus {
    border: #999 1px solid;
    background-color: #DDEEFF;
}

input[type="submit"]
{
    border: #DDEEFF 1px solid;
    width: 30%;
}

