@import url(../Styles/Home.css);
@import url(../Styles/About_style.css);
@import url(../Styles/formulario.css);
@import url(../Styles/eventos.css);
@import url(../Styles/shows.css);

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body{
    background-color: rgb(236, 235, 235);
}

header{
    width: 100%;
    height: 90px;
    background-color: #080f1f;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor{
    width: 90%;
    margin: auto;
}

header .contenedor{
    display: table;
}

section{
    width: 100%;
    margin-bottom: 25px;
}

/* BOTON DE WHATSAPP FLOTANTATE INICIO */
.btn-wsp{
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    }

.btn-wsp:hover{
    text-decoration: none;
    background: white;
    color: #25d366;
    transition: all .2s;
    }
/* BOTON DE WHATSAPP FLOTANTATE FIN */



.titulo{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width:1024px) {
    .contenedor{
        width: 1000px;
    }

    
}