Files
FlappyLixi/style.css
2024-03-19 21:47:20 +02:00

21 lines
256 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: black;
overflow: hidden;
}
canvas {
position: fixed;
top: 50vh;
left: 50vw;
transform: translate(-50%, -50%);
height: 100vh;
width: auto;
background: pink;
}