body
{
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f8f8f8;
}

section
{
    display: flex;
    justify-content: center;
    width: 80%;
    background: #ffffff;
    flex-direction: column;    
}

header
{
    display: flex;
    flex-direction: column;
    height:150;
    justify-content: space-evenly;
    align-items: center;
    border:1px solid gray;
    padding: 20px;
}

h1
{
    padding-top:20px;    
}

canvas {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 100px); /* Ajuste la hauteur pour tenir compte de la hauteur du header */
    width: 80%;
    align-items: center;
    border: 1px solid gray;
    margin-top: 20px; /* Éloigne le section du header */
    overflow: hidden; /* Empêche le canvas de déborder */
}

canvas {
    display: flex;
    width: 100%;
    background-color: #f5f5f5; /* Définit la couleur de fond */
}
