@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Raleway:400,700,900');
@font-face {
    font-family: 'ralewaybold';
    src: url('Fuentes/Raleway/raleway-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayregular';
    src: url('Fuentes/Raleway/raleway-regular-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayextrabold';
    src: url('Fuentes/Raleway/raleway-extrabold-webfont.woff2') format('woff2'),
         url('Fuentes/Raleway/raleway-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
body {
    line-height: 20px;
    margin: 30px;
    font-size: 30px;
    font-family: 'ralewayregular', sans-serif;
    background-color: darkslategray;
}
header {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: wheat;
}
#NAV {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}
nav {
    display:flex;  
    flex-flow: column;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}
nav ul li a {
    display: list-item;
    font-family: 'ralewayextrabold', sans-serif;
    font-weight: 600;
    font-size: 40px;
    text-transform: capitalize;
    line-height: 45px;
    color:darkslategray;
    text-decoration: none;
    text-align: auto;
    padding: 4px;
    background-color: wheat;
}
nav ul {
    margin-left: 0;
    margin-right: 0;
    list-style: none;
}
nav ul :hover {
    color: wheat;
    background-color: darkslategray;
}
#Logo {
    padding: 10px;
    width: 100px;
    display: block;
    margin-left:auto;
    margin-right: auto;
}
main {
    margin-bottom: 20px;
}
#About {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: wheat;
}
#avatar {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
    border-style: solid;
    border-radius: 10px;
    border-width: 2.5px;
    border-color: darkslategray;
}
section {
    padding: 20px;
    border-radius: 10px;
    background-color: wheat;
    margin-bottom: 20px;
}
footer {
    padding: 15px;
    border-radius: 9px;
    font-size: 12px;
    background-color: wheat;
    text-align: center;
    line-height: 12px;
}
.textobase {
    font-size: 15px;
    color: darkslategray;
}
p {
    line-height: 19px;
}
progress{
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 5px;
}
progress::-webkit-progress-bar {
    border-radius: 5px;
    background-color: darkgray;
}
progress::-webkit-progress-value {
    border-radius: 5px;
    background-color: darkslategray;
}
.titulo {
    font-family: "ralewayextrabold", sans-serif;
    font-weight: 600;
    color:darkslategray;    
}
h1 {
    display: block;
    margin-bottom: 5px;
    font-size: 50px;
    line-height: 50px;
}
h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-style: normal;
}
h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-style: normal;
}
ul {
    margin-left: 25px;
    list-style:;
    line-height: 30px;
    text-decoration: none;
}
a {
    font-family: "ralewaybold", sans-serif;
    font-weight: 600;
    font-size: 11px;
    border-radius: 4px;
    padding: 4px;
    color:wheat;
    background-color: darkslategray;
    text-decoration: none;
}
a:hover {
    background-color: cadetblue;
}
    footer {
        font-size: 13px;
        line-height: 15px;
    }
@media screen and (min-width:1000px) {
    header {
        margin-left: 0px;
        margin-right: 0px;
    }
        nav ul {
    display:flex;  
    flex-flow: row wrap;
    justify-content: center;
    }
    nav ul li a {
    font-size: 25px;
    }
    #About {
        flex-flow: row nowrap;
    }
    #avatar {
        margin-right: 20px;
        margin-bottom: 0px;
    }
    #Contenido {
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        margin-bottom: 0px;
    }
    #Progreso {
        flex: auto;
        width: auto;
        margin-right: 20px;
        margin-bottom: 0px;
    }
    #portfolio {
        margin-bottom: auto;
    }
    .textobase {
        font-size: 20px;
        line-height: 25px;
        color: darkslategray;
    }
    h1 {
        font-size: 50px;
        line-height: 40px;
    }
      ul li {
          line-height: 40px;
    }
    footer {
        font-size:12px;
    }
}
    
@media screen and (min-width:1500px) {
    #Logo {
        width: 80px;
        margin-right: auto;
        margin-left: 5px;
        padding: 5px;
        }
    #NAV {
        display:flex;
        flex-flow: row wrap;
    }
        nav ul {
        justify-content:flex-end;
    }
    nav ul li a {
        font-size: 15px;
    }
}