40 lines
702 B
CSS
40 lines
702 B
CSS
.app-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: relative;
|
|
background-color: white;
|
|
overflow: hidden;
|
|
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
#instructions {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
background: rgba(255, 255, 255, 0.85);
|
|
backdrop-filter: blur(12px);
|
|
padding: 24px;
|
|
border-radius: 16px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
max-width: 300px;
|
|
z-index: 100;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0 0 12px 0;
|
|
font-size: 1.25rem;
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 12px 0;
|
|
font-size: 0.95rem;
|
|
color: #4a4a4a;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.canvas-wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
} |