/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', cursive;
}

#game-container {
    border: 4px solid #fbbf24;
    position: relative;
}
#game-canvas {
    background-color: #f1f5f9;
    image-rendering: pixelated;
}

.popcorn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.1s;
}

.popcorn:hover {
    transform: scale(1.1);
}
button {
    font-family: 'Press Start 2P', cursive;
}