/* ABOUTME: Styles for the Battlefield First Edition game page */
/* ABOUTME: Centers the game canvas and provides basic page layout */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2c3e50;
    font-family: 'Comic Sans MS', 'Chalkboard', cursive;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-container {
    text-align: center;
}

h1 {
    color: #f39c12;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 #e74c3c, 6px 6px 0 #9b59b6;
}

#game {
    border: 4px solid #f39c12;
    border-radius: 8px;
    overflow: hidden;
}

#instructions {
    margin-top: 10px;
    color: #ecf0f1;
    font-size: 1rem;
}

#instructions strong {
    color: #f39c12;
}
