@charset "utf-8"
/* REGLAS GENERALES*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #1f3e51;
}

/* head*/
h1 { color: #ffffff;
font-weight: lighter;}

header {
    background-color: #ffffff;
    padding: .6em;
    height: 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

img {
    max-width: 100%;
    height: auto;   
}

#logo-header {
    width: 4em;
    display: block;
    
}
header nav ul {
    display: flex;
    justify-content; flex-end;
    list-style: none;

    
}

header nav ul li a {
    text-decoration: none;
    font-size: medium;
    font-weight: 300;
    color: #1f3e51;
    margin-right: 1.5em;
    font-weight: bolder;
    
}
/*BODY*/
p {color: #ffffff}
h3 {color: #ffffff
}

nav ul li {color: #ffffff}
a{color: white;}