@charset "utf-8";

/* reglas generales */

body {
    background-color: #de6b22;
    text-align: left;
    margin-left: 5em;
    font-family: sans-serif;
    text-transform: none;
    
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: blue
} 

figure {
    margin: 0;
    padding: 0;
    max-width: 30em;
}


/* 
    primera parte para el celular
    mobile first
*/

h1 {
    font-weight: 500 ;
    text-transform: uppercase    
}

main h2 {
    font-size: 01.1em;
    margin-left: -2em;
    font-weight: 500;
    text-decoration-line: underline
        
}

header nav ul li {
    display: inline-block;
    
}

header nav ul li a {
    color: black;
    font-size: 00.9em;
    text-decoration-line: none;
    background-color: none;
    display: block;
    text-align: center;
    margin: 0 2em 0.3em 0;
    
}

header nav ul li a:hover {
    background-color: none;
    text-decoration-line: underline;
    font-weight: 600
}


footer {
    
}



/* 
    segunda parte para escritorio
*/