@import url(menu.css);
@import url(concierto4.css);
@import url(blog.css);
@import url(info.css);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open sans', sans-serif;
}

header {
    width: 100%;
    height: 55px;
    background: white;
    color: darkblue;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
     width:95%;
    margin: auto;
        
}

h1 {
    float: left;
    margin-top: 10px;
}

h3 {
    text-align: center;
    font-family: sans-serif;
}

p {
   text-align: center; 
}

header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
}

#bienvenidos {
    text-align: center;
}

#bienvenidos p {
    text-align: center;
    margin-left: 50px;
    margin-right:50px;
}

#bienvenidos h2{
    color: darkblue;
}

footer .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

.copy {
    font-size: 20px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
}

.sociales a {
    color: black;
    text-decoration: none;
}


@media (min-width:768px){
    .sociales {
        width: auto;
    }
    
    footer .contenedor{
        justify-content: space-between;
    }
    
}


@media (min-width:1024px) {
    .contenedor{
        width: 1100px;
    }
}














