/*
// File: decathlon_closest/style.css
// Created: 2023-10-27 @ ~10:46 AM
// Description: CSS for the Decathlon concept page layout and canvas styling.
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a2e; /* Dark blue background */
    color: #e0e0e0; /* Light text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

#game-container {
    border: 3px solid #4a4a8a; /* Border color */
    margin-bottom: 15px;
    background-color: #0f0f1a; /* Very dark canvas background */
    box-shadow: 0 0 15px rgba(74, 74, 138, 0.5);
}

#gameCanvas {
    display: block;
    /* Crisp edges for blocky rendering */
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#instructions {
    text-align: center;
    font-size: 0.9em;
    color: #a0a0c0; /* Lighter blue-grey text */
    max-width: 600px;
}

#instructions p {
    margin: 4px 0;
}

#event-instructions {
    margin-top: 10px;
    font-weight: bold;
    color: #f0f0f0; /* White for emphasis */
}