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

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

body { 
    font-size: 16px; 
    line-height: 25px;
    font-family: Helvetica, sans-serif;
    color: black;
}

h1 {
    font-size: 32px;
    color:teal;
}

h2 {
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #bbb;
}

header, main, footer {
    margin: 1rem auto;
    padding: .5rem;
    max-width: 600px;
}

header, footer, footer a {
    text-align: center;
    background-color:lightgray;
    color:teal;
}

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

footer {
    font-size: 15px;
}