.stage {
    margin-top: 10px!important;
    border: 1px solid var(--orange-yellow-crayola) !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stage:hover {
    box-shadow: 0 0 15px var(--orange-yellow-crayola);
    transform: scale(1.05);
}


.block-stage {
    position: fixed; 
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.7); 
}
.contener-stage {
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%, -50%);
    max-width: 350px;
    width: 80%;
    height: 150px;
    background-color: rgb(4, 35, 35);
    z-index: 201;
    padding: 20px;
    border-radius: 15px;
    text-align: center;


}

a.button-stage {
    text-decoration: underline var(--orange-yellow-crayola);
    cursor: pointer;
}

