*{
    box-sizing: border-box-;
}
.contenedor{
    height: auto;
    width: 76%;
    margin: 0% auto;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
}
.menu{
    height: auto;
    width: 100%;
    background-color: rgb(47, 47, 47);
    display: flex;
}
.btn{
    flex-grow: 1;
    text-align: center;
    padding: 1%;
}
.btn:hover{
    background-color: rgb(27, 27, 27);
}
.btn>a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.banner{
    height: auto;
    display: flex;
}
.banner>img{
    width: 100%;
    height: auto;
}
.caja{
    height: auto;
    background-color: rgb(138, 138, 138);
    display: flex;
}
#reves{
    flex-direction: row-reverse;
}
.imga{
    height: auto;
    width: 50%;
    display: flex;
    align-self: center;
    margin: 4%;
    box-shadow: 10px 10px 5px ;
}
.imga>img{
    width: 100%;
    height: auto;
}
.text{
    height: auto;
    width: 50%;
    padding: 3%;
    line-height: 150%;
    background-color: rgba(59, 56, 56, 0.637);
    color: white;
    margin: 4%;
    align-self: center;
}
.text>h2{
    text-align: center;
}
.footer{
    height: auto;
    padding: 2%;
    text-align: center;
    background-color: rgb(47, 47, 47);
}
.footer>h4{
    color: white;
}
.footer>a>img:hover{
    filter: blur(2px);
}
body{
    background-color: black;
    height: auto;
}
/**EEmpieza CSS index**/
.texte{
    padding: 3%;
    height: 100%;
    align-self: center;
    background-color: rgba(59, 56, 56, 0.637);
    color: white;
    overflow: auto;
}
.imago{
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
}
.imago>a>img:hover{
    filter: blur(2px);
}


/**Empieza CSS banda**/
.cajete{
    height: auto;
    background-color: rgb(138, 138, 138);
    display: flex;
    overflow: auto;
}
.cajete>.texte>h1{
    text-align: center;
}
.texte>h1{
    text-align: center;
}
.imagi{
    height: auto;
    width: 50%;
    display: flex;
    align-self: center;
    margin: 4%;
    box-shadow: 10px 10px 5px ;
}
.imagi>img{
    height: auto;
    width: auto;
}
/**Empieza CSS gal**/
.texti>h2{
    text-align: center;
    color : white;
}
.texti{
    padding: 4%;
    color : white;
    line-height: 150%;
    background-color: rgba(59, 56, 56, 0.637);
    align-self: center;
}
.gale{
    width: 100%;
    height: 600px;
    display: flex;
}
.gale>img{
    width: 0;
    flex-grow: 1;
    object-fit: cover;
    opacity: .5;
    transition: all 0.5s ease;
}
.gale>img:hover{
    width: 15%;
    opacity: 1;
}
.galeria{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;

    background-color: rgba(59, 56, 56, 0.637);
}
.galeria>a>img{
    width: 31.3%;
    margin: 1%;
    object-fit: cover;
    animation: discos linear 5s infinite;
}
.galeria>a>img:hover{
    filter: hue-rotate(90deg);
}
.vid{
    width: 60%;
    height: 400px;
    background-color: rgb(138, 138, 138);
    margin: 16px auto;

}
.vid>iframe{
    width: 100%;
    height: 100%;
}
/**Empieza CSS contacto**/
.mapa{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    background-color: rgb(138, 138, 138);
    margin: 0 auto;
}
.mapa>iframe{
    width: 100%;
    height: 100%;
}
.formulario{
    width: auto;
    padding: 1%;
    margin: 1%;
    border: 1px solid red;
    line-height: 150%;
    box-shadow: 5px 5px 5px darkred;
    background-color: rgb(0, 0, 0);
    display: flex;
    color: white;
}
form{
    width: 100%;
    margin: 0 auto;
}
fieldset{
    margin: 2% 0;
}
label{
    display: block;
    margin: 2%;
}
input, select, textarea{
    width: 100%;
}
.nosi{
    width: unset;
    margin: .5% 2%;
}
input[type="submit"]{
    width: 20%;
    margin: 0 40%;
}
/**animaciones**/
@keyframes discos {
  100% {transform: rotate(180deg);}
}