@import url(menu.css);
@import url(secciones.css);
@import url('https://fonts.googleapis.com/css?family=Audiowide|Comfortaa');


*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{		
    font-family: 'Comfortaa', cursive;
    letter-spacing: 1.8px;
    font-size: 15px;
    line-height: 2;
    height: 100%;
}

header{
	width:100%;
    height: 50px;
    background: #362C52;  
    color:#fff;
    position:fixed;
	top:0;
	left:0;
	z-index:100;	
}

.header2{
    position:fixed;
    top:0;
}

.contenedor{
	width:90%;
	margin:auto;
    clear: both;
}


header .contenedor{
    display: table;
}

#logo{
    height:150px;
    width:100%;
    font-family: 'Audiowide', cursive;
    text-align: center;
    padding-top:70px;
    color:#362C52;
    background: rgba(0,0,0,0.1);
    display:none;
}

.select{
    background: rgba(0,0,0,0.3);
}

#info{
    margin-top:70px;
}


h4,h5{
    color:#686E71;
}

h2,h3{
    color:#362C52;
}

#contacto{
    background: rgba(0,0,0,0.3);
    padding:90px 0px;
    text-align: center;
    color:#362C52;
}

footer{
    background: #362C52;  
    text-align: center;
    padding:10px;
    color:#fff;
    font-size:12px;
    margin-bottom:0;
}

@media (min-width:1024px){
    .contenedor{
        width:1000px;
        margin:auto;
    }
    #logo{
        display:block;
    }
    header{
        top:150px;
        position:absolute;
    }   
}