body {
    background-color: #000;
    color: #FFF;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

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

#game-canvas {
    background-color: #111;
    border: 2px solid #FFF;
}

#level-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#objective-tracker {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.9em;
    color: #DDD;
    margin: 0;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#dialogue-box {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #FFF;
    text-align: left;
}

#dialogue-box.hidden {
    display: none;
}

#dialogue-text {
    margin: 0 0 15px 0;
    line-height: 1.5;
}

#dialogue-button {
    padding: 10px 15px;
    background-color: #333;
    color: #FFF;
    border: 1px solid #FFF;
    cursor: pointer;
    float: right;
}

#dialogue-button:hover {
    background-color: #555;
}