html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#gameContainer {
    position: relative;
}

#gameBox {
    position: relative;
    z-index: 1;
}

.dialogBox {
    position: absolute;
    background-color:bisque;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    padding: 20px;
    background-color: bisque;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 20px;
    z-index: 999;
}

#monologueBox {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    padding: 12px 20px;
    background: bisque;
    color: black;
    border: 2px solid black;
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-align: center;
    border-radius: 8px;
    display: none;
    z-index: 999;
}