
* {
    box-sizing: border-box;
}

#chicago {
    color: #f2f0f0;    

}


body {
    margin: 0;
    padding: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: hwb(259 4% 40%);
    font-family: Arial, sans-serif;
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}

#gameCanvas {
    background: rgb(101, 106, 130);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}