/*CSS que organizan la estructura del documento HTML*/
html, body {
    margin: 0px;
    padding: 0px;
}
header {
    display: flex;
    position: fixed;
    width: 25%;
    z-index: 1000;
    max-width: 400px;
    flex-direction: column;
    height: 100vh;
}
div#logo {
    width: 150px;
    margin: 25px auto 0px auto;
    text-align: center;
}
header > nav > ul {
    display: flex;
    flex-direction: column;/*esta propiedad hace que el listado se nos muestre en columna*/
    justify-content: flex-start;/*esta propiedad hace que <ul> se alinee a la izquierda en el eje horizontal*/
}
header nav ul {
    list-style-type: none;/*Elimina la decoración de odos los listados*/
    margin: 0;/*Elimina los márgenes que añade por defecto el navegador a los <ul>*/
    padding: 0;/*Elimina los paddings que añade por defecto el navegador a los <ul>*/
}
header > nav > ul > li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
header > nav > ul > li > ul {
    display: none;
    position: absolute;
    width: 100%;
    padding-left: 0px;
    min-width: 200px;
    z-index: 99;
}
header > nav > ul > li:hover > ul {
    display: block;
}
header > nav > ul > li > ul {
    list-style-type: none;
    left: 215px;
    top: 0px;
}
header > nav > ul > li > ul > li {
    margin: 0;
    padding: 0;
}
header > nav > ul > li > ul > li > a {
    display: block;
}
header > nav > ul > li > a {
    display: inline-block;
    padding: 1rem 1.5rem;
}
header > nav > ul > li:nth-child(4) {
    position: absolute ;
    bottom: 10px;
    text-align: center;
}
/*Hasta aquí CSS que organizan la estructura del documento HTML*/
/*CSS que aplican diseño a nivel más estético al documento HTML*/

body {
    background: #ffffff;
    color: #222;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.20px;
    font-weight: 400;
    height: auto !important;
    height: 100%;
    line-height: 1.6rem;
    min-height: 100%;
}
header {
    background-color: #000;
}
div#logo img {
    border-radius: 150px;
}
header > nav > ul > li {
    color: #fff;
    border-top: 1px dotted #ffffff;
}
header > nav > ul > li:last-child {
    border-bottom: 1px dotted #ffffff;
}
header > nav > ul > li:hover {
    background: rgba(58, 162, 173, 1);
    color: #fff;
}
header > nav > ul > li:hover a , header > nav > ul > li a:hover {
    color: #fff;
}
header > nav > ul > li > ul {
    background-color:  rgba(62, 188, 207, 0.96);
    border-radius: 0 0 2px 2px;
    box-shadow: 0 3px 1px rgba(0, 0, 0, .05);
    font-size: 1rem;
}
header > nav > ul > li > ul > li > a {
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    letter-spacing: 1.5px;
    padding: .25rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
}
header > nav > ul > li > ul > li:hover > a {
    background-color: rgba(0, 0, 0, .15);
}
header > nav > ul > li > a {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 200;
    letter-spacing: 1px;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}
header > nav > ul > li:nth-child(4) {
    background-color:  rgba(62, 188, 207, 0.96);
    border-radius: 50px;
}