#container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers elements horizontally */
    justify-content: center;
}

body{
    margin:0;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    height:100vh;

    background:
        radial-gradient(circle at center, #102040, #02030a);
}

canvas{
    border:3px solid white;
}

h1{
    margin-bottom: 20px; /* Space between the h1 and the canvas */
    font-family: Arial, sans-serif;
    color: white;
}

#icon{
width: 50%;
}