.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}


.modal-contenido {
    background-color: #202020;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    top: 250px;
}

.tit-modal {
    display: block;
    text-align: center;
    font-weight: 500;
}

.cerrar-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}


.otras-salas {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    background-color: rgb(22, 22, 22);
}

.tit-otras-salas {
    color: #9a0000;
    font-family: BloodLust, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 4em;
}

.salas-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 500px;
    height: 100%;
    margin: auto;
}

.sala-1,
.sala-2 {
    flex-grow: 1;
    /* Permite que las salas se expandan igualmente */
    padding: 10px;
    position: relative;
    text-align: center;
    transition: all 0.22s ease-in-out;

}

.sala-1 img,
.sala-2 img {
    position: relative;
    width: 500px;
    max-width: 100%;
    height: 300px;
    border-radius: 3%;
    background-color: #2c2c2c;
    padding-top: 25px;
    object-fit: cover;
    transition: all .22s ease-in-out;
}

.imgsala2{

}

.sala-1 img:hover,
.sala-2 img:hover{
    transition: all .22s ease-in-out;
    box-shadow: 10px 10px 17px 0px rgba(0,0,0,0.84);
}

.sala-1 button,
.sala-2 button {
    border-radius: 3%;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.sala-1:hover,
.sala-2:hover{
    scale: 1.05;
    transition: all 0.22s ease-in-out;
}

.tit-sala1,
.tit-sala2 {
    position: absolute;
    left: 0;
    right: 0;
    color: #ccc;
    z-index: 100;
}