body {
    margin: 0;
    overflow: hidden;
    background: url('assets/background.jpg') no-repeat center center/cover;
}
.game-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.character {
    position: absolute;
    bottom: 20%;
    width: 300px;
    height: auto;
}
.dialogue-box {
    width: 80%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}
.options {
    display: none;
    margin-top: 10px;
}
.option {
    background: white;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}
