33 lines
559 B
CSS
33 lines
559 B
CSS
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background: linear-gradient(to bottom, #1a1a2e, #16213e, #0f3460);
|
|
font-family: 'Courier New', monospace;
|
|
color: #e94560;
|
|
}
|
|
|
|
#luna-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#hud {
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 10px;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
z-index: 100;
|
|
border: 1px solid #e94560;
|
|
}
|
|
|
|
#score { font-weight: bold; }
|