/* style.css */

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Game Container */
#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Header Styling */
header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2rem;
    color: #00d1b2;
    margin-bottom: 10px;
}

#start-button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff3860;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#start-button:hover {
    background-color: #ff6f91;
}

/* Main Content Area */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Canvas Styling */
#game {
    border: 2px solid #00d1b2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background-color: #2a2a40;
    cursor: pointer;
}

/* Game UI Styling */
#game-ui {
    margin-top: 15px;
}

#status {
    font-size: 1.2rem;
    color: #ffffff;
    background-color: #363636;
    padding: 10px 20px;
    border-radius: 5px;
}