/* CIT 230 - Assignment Portal CSS Template */
/* You may use #HEX or color names */

/* * is a wildcard referring to all elements. */
* { margin: 0; box-sizing: border-box; } 

body { 
    font-size: 16px; 
    line-height: 32px;
    font-family: Ubuntu, sans-serif ;
    color:#49516F;
}

ul a {
    color:#06D6A0;
}
h1 {
    font-size:  1.5rem  /*(rem is a unit of measure) */;
    color: white;
}

h2 {
    font-size: 1.0rem;
    text-align: center;
    border-bottom: 1px solid #06D6A0;
}

header, main, footer {
    margin: 1.25rem auto;
    padding: .5rem;
    max-width:  1000px ;/* (px = pixel is a unit of measure)  */
}

header, footer, footer a {
    text-align: center;
    background-color:#49516F
    ;
    color: whitesmoke;
}

header img {
    width: 225px;
    height: auto;
    float: right;
}

footer {
    font: size 10px;
}