body {
    font-family: Arial, sans-serif;
    background: rgb(6, 14, 36);
    height:100%;
    margin-top:60px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: 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;
    height: 300px;
    width:100%;
    display: flex;
    border-bottom: 3px solid rgb(240, 142, 14);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    
  }
#game-container {
    text-align: center;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 100px);
    grid-template-rows: repeat(5, 100px);
    gap: 2px;
    margin-bottom: 10px;
}

.grid-cell {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid black;
    font-size: 24px;
    font-weight: bold;
}

input {
    width: 80px;
    height: 36px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0;
}
section{ 
    background-color: rgb(8, 8, 105);
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 5px solid orange;
    border-radius:0 0 25px 25px;
    padding-top: 60px;
    
    }
button {
    width: 510px;
    background-color: rgb(218, 218, 186);
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}
button:hover{
    background-color: rgb(179, 179, 123);
}

footer{
    
    background-color: rgb(6, 49, 96);
    display: flex;
    bottom: 0;
    width: 100%;
    justify-content: right;
    border-top: 5px solid orange;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
#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 ;
}