2023-10-31 17:23:15 +01:00

17 lines
326 B
CSS

body {
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #000000; /* Change the background color as needed */
}
canvas {
width: 100%;
height: 100%;
overflow: hidden;
display: block;
object-fit: contain;
}