* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: black;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    background: black;
	z-index: -1;
}

.over {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.over img { 
	max-width: 80%;
	margin-bottom: 2rem;
}