/* Este archivo establece características por defecto a todos los .html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 10px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.barra {
    width: 100%;
    height: 2px; 
    background-color: grey; 
    margin: 9px 0;  
}
