* {
    box-sizing: border-box;
}
body {
    background-image: url("img/sky.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}
.redWall {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 3s ease-in-out;
    cursor: pointer;
}
.dialogue-box {
    position: absolute;
    top: 50px;
    width: 70%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.red-text {
    color: red;
    font-size: 18px;
    margin: 10px 0;
}
.yellow-text {
    color: yellow;
    font-size: 18px;
    margin: 10px 0;
}
.option {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    text-align: center;
}
.option:hover {
    background: rgba(255, 255, 255, 0.4);
}
.chi {
    position: absolute;
    top: 120px;
    width: 10px;
    cursor: pointer;
}