body {
background: black;
color: white;
font-family: Arial;
text-align: center;
margin: 0;
overflow: hidden;
}

h1 {
margin-top: 20px;
}

.snackRow {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 50px;
}

.snack {
border: 1px solid white;
padding: 20px;
width: 150px;
}

.placeholder {
height: 100px;
border: 1px dashed white;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}

#hiddenButton {
position: fixed;
bottom: 0;
right: 0;
width: 80px;
height: 80px;
}

#codePopup {
display: none;
position: fixed;
bottom: 100px;
right: 20px;
background: black;
border: 1px solid white;
padding: 10px;
}

#adminPanel {
display: none;
position: fixed;
bottom: 150px;
right: 20px;
background: black;
border: 1px solid white;
padding: 10px;
}

canvas {
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
