body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('Backgound.png') no-repeat center center;
    background-size: cover;
    image-rendering: pixelated;
}

canvas {
    background: #222 ;
    border: 2px solid #555;
    opacity: 0.8;
	position: fixed;
	transform: translateY(40px);
}

@font-face {
    font-family: 'Pixeled';
    src: url('Pixeled.ttf') format('truetype');
}

#score {
    font-family: 'Pixeled', monospace;
    font-size: 20px;
    color: rgba(48, 212, 205);
    background-color: rgba(0,0,0,0.7);
    padding: 8px;
    border: 2px solid rgba(81, 74, 170);
    text-align: center;
	justify-content: center;
}
	
#instructions {
	font-family: 'Pixeled', monospace;
    font-size: 20px;
	border: 2px solid rgba(81, 74, 170);
    color: rgba(48, 212, 205);
    padding: 8px 16px;
    text-align: Center;
}

main {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10; /* ensures it appears above the canvas */
}

#score, #instructions {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}