﻿body{
    background: url(../images/mariachis.webp) no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* .chat{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
}
.chat img{
    position: relative;
    z-index: 1003;
    width: 100%;
}
.chat span{
    position: absolute;
    top: 12px;
    left: -155%;
    z-index: 1002;
    border: 0px solid red;
    background: white;
    font-weight: bold;
    color: gray;
    padding: 4px 10px;

    border-radius: 10px;

    box-shadow: 2px 0px 10px gray;
} */


.pagina{
    border:10px solid black;
    background: #013801;
}

.efecto{
    background: url(../images/mariachis-serenatas.webp) no-repeat center center;
    background-size: 100% auto;
    padding-bottom: 250px;
}

.titulo-efecto div{
    background: red;
    color: white;
    font-size: 27px;
    text-shadow: 2px 2px 2px black;
    font-weight: bold;
    display: inline-block;
    padding: 0 10px;
}
.titulo-efecto img{
    height: 35px;
}
.titulo-efecto a{
    color: white;
}


.cabecera{
    background: black;
    color: white;
    padding: 0 10px;
}

.logotipo{
    font-family: 'Bonheur Royale', cursive;
    font-size: 50px;
}
.leyenda{
    text-align: right;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}


#menu{
    background: #367800;
}

nav a, nav a:hover{
    color: white;
    text-decoration-line: none;
}

nav ul{
    list-style: none;
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
}
.menu{
    border: 0px solid white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 5px 10px;
}


.contenido{
    padding: 30px;
}

.titulo{
    font-family: 'Bonheur Royale', cursive;
    text-align: center;
    font-size: 50px;
    color: white;
}

.contenido .p{
    font-size: 20px;
}
.contenido .p img{
    width: 30%;
    float: left;
    margin: 0 20px 20px 0;
}


.videos{
    padding-top: 20px;
    padding-bottom: 20px;
}
.videos video{
    width: 49%;
    display: inline-block;
}

table{
    background: black;
    color: white !important;
}


.fotos{
    padding-top: 30px;
    padding-bottom: 30px;
}
.fotos img{
    width: 22%;
    height: 300px;
    object-fit: cover;
    margin: 0 1% 20px;
}


.chiqui{
    font-size: 13px;
    line-height: 15px;
}


.a{
    background: white;
    text-align: center;
    color: black;
    font-size: 22px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    padding: 4px 20px;
}

.aa a{
    text-decoration: none;
}


.leyendota{
    background: black;
    text-align: center;
    font-size: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.leyendota span{
    font-size: 60px;
}


footer{
    background: #367800;
    color: white;
    font-size: 20px;
    line-height: 30px;
    padding: 20px;
    margin-top: 30px;
}
footer a{
    color: white;
}
footer strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
footer img{
    width: 35px;
}
.form-group{
    margin-bottom: 20px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .videos video{
        width: 100%;
        margin-bottom: 20px;
    }
    .fotos{
        text-align: center;
    }
}

@media screen and (max-width:576px){
    nav ul{
        display: none;
    }
    
    .fotos img{
        width: 47%;
        height: 310px !important;
    }
    .efecto{
        padding-top: 0;
        padding-bottom: 250px;
    }
    .titulo-efecto div{
        font-size: 22px;
    }
}

.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}