body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2d3436;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    color: #dfe6e9;
    overflow: hidden;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    background-color: #2d3436;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    max-width: 100%;
    max-height: 100%;
}
