.shadow {
    background-color: #555;
    color: white;
    text-align: center;
    height: 100vh;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.title {
    font-weight: 400;
    font-style: normal;
    font-family: "Creepster", system-ui;
}
.text {
    font-style: normal;
    font-family: "Miniver", cursive;
    font-weight: 400;
    font-size: 200;
}
.gate {
    height: 550px;
    width: auto;
}
.room {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: block;
    border: 0;
}
.end {
    background-color: black;
}
.dungeon {
    background-image: url("img/room.jpeg");
    color: white;
}
.text2 {
    text-align: center;
    padding: 200px;
    font-style: normal;
    font-family: "Miniver", cursive;
    font-weight: 400;
}
.deeper {
    padding: 10px;
    background-color: #555555;
    color: white;
    border-radius: 5px;
    border-color: white;
    border-style: solid;
    transition: opacity 0.3s;
}
.deeper:hover {
    opacity: 0.7;
}
.final {
    background-color: #555555;
    color: white;
}
.not_found {
    background-color: black;
    color: white;
    text-align: center;
}
ul {
    list-style: none;
}