.contenedor {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
}

.cabz {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 20px;
}

.artz {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-right:15px;
}

.artz img {
    height: auto;
    width: auto;
}
.artz p{
    font-family: 'Segoe';
}

.vid {
    display: flex;
    width: 770px;
    height: 770px;
    background-image: url('../img/backgrounds/navidad.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fcd031;
    width: 90%;
    border-radius: 24px;
    font-family: Sifonn;
    font-size: 48px;
    margin: 15px;
    box-shadow: inset 3px 3px 10px  rgba(0, 0, 0, 0.5);
}

.titulo b {
    color: aliceblue;
}

.capa2 {
    display: flex;
    width: 90%;
    margin: 20px;
    justify-content: center;
    align-items: center;
    
}

.fotos {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    height: 900px;
    justify-content: space-evenly;
    align-content: flex-start;
   
}
.imgpub {
    width: 433px;
    height: auto;
    margin: 15px;
    background-position: center;
    border: 3px solid transparent;
    padding: 15px;
    border-radius: 10px;
    transition: border-color 0.3s; 
    
}

.imgpub:hover {
    border-color: #fcd031; /* Cambiamos el color del borde a verde al pasar el mouse sobre la imagen */
}

.vid2 {
    display: flex;
    width: 28%;
    height: 900px;
    padding: 5px;
    background-image: url('../img/backgrounds/burbujas.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.imgMuestraAvatar {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2rem;
}

@media screen and (max-width: 740px) {
    .cabz {
        display: flex;
        flex-direction: column;
        width: 95%;
        margin: 20px;
    }
    .titulo {
        display: flex;
        height:50px;
        justify-content: center;
        align-items: center;
        background-color: #fcd031;
        width: 90%;
        border-radius: 24px;
        font-family: Sifonn;
        font-size: 1rem;
        margin: 15px;
        box-shadow: inset 3px 3px 10px  rgba(0, 0, 0, 0.5);
    }
    .artz {
        display: flex;
        flex-direction: column;
        width: 95%;
        margin-bottom: 15px;
    }
    .artz img {
        height: 85%;
        width: auto;
        margin-bottom: 15px;
    }
    .vid {
        display: flex;
        width: 95%;
        height: 65vh;
        background-image: url('../img/backgrounds/concierto.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .capa2 {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 20px;
        justify-content: center;
        align-items: center;
    }
    .fotos {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: 900px;
        justify-content: center;
        align-items: center;
    }
    .imgpub {
        width: 90vw;
        height: auto;
        margin: 20px;
        background-position: center;
    }
    .imgpub img{
        width: 90vw;
        height: auto;
    }
    .vid2 {
        display: none;
    }
}