13 lines
221 B
CSS
13 lines
221 B
CSS
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden; /* Prevent scrollbars */
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: black; /* Letterbox background color */
|
|
}
|
|
canvas {
|
|
display: block;
|
|
}
|