body{
    width: 95%;
    background: rgb(6, 14, 36);
    padding-top: 60px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{   
    
    background-image: url('../../assets/baniere.png');
    background-color: orange;
    background-size: cover; /* Assure que l'image couvre toute la section */
    background-position: center center;
    background-repeat: no-repeat;
    width:95%;
    height: 300px;
    display: flex;
    
    border-bottom: 3px solid rgb(240, 142, 14);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    
}

section{
    
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
    background-image: url("../images/racing.jpg");
    background-size: cover;
    
    width:95%;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 5px solid orange;
    border-radius:0 0 25px 25px;
}

footer{
    
    background-color: rgb(6, 49, 96);
    display: flex;
    bottom: 0;
    width: 95%;
    justify-content: right;
    border-top: 5px solid orange;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

p{
    color: white;
    margin: 25px;
}

strong{
    color: red;
}

#plateau-jeu{
    z-index: 0;
    margin: 50px;
    background-image: url("../images/route.png");
    border-radius: 20px;
}
#contact{
    width: 250px;
    height:30px;
    color: rgb(255, 255, 255);

    position: relative;
    right: 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: cornflowerblue;
    border-radius: 5px;
    border-bottom: 5px solid orange ;
}