﻿* {
    box-sizing: border-box;
}

body
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.5em;
    margin-left: 15%;
    margin-right: 15%;
    color: black;
}

h1 {
    font-family: 'Lucida Calligraphy', Trebuchet, Georgia, serif;
    font-size: 3em;
    margin:0 0;
}

h2, h3, .sub-head, .todays-date {
    font-family: 'Lucida Sans Unicode', Arial, sans-serif;
    text-transform:capitalize;
}

#headliner {
    font-size: xx-large;
    font-weight: bold;
    line-height: 1.35em;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    margin-top: .75em;
    margin-bottom: 0;
}

h3 {
    color: dimgray;
    margin-top: .5em;
    margin-bottom: .5em;
}
.sub-head {
    font-size: 1.25em;
    text-align:center;
    margin: 0 0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

#top-date-bar, footer {
    background-color: black;
    color: white;
    line-height: 2em;
    padding-left: 1em;
}

#page-title-bar {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    line-height: 3.5em;
    padding-top: 1em;
    padding-bottom: 0;
}

#top-nav-bar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

    padding: 0;
    background-color: black;
    color: white;
    line-height: 2em;
}

#happening-now {
    font-weight: bold;
    color: dodgerblue;
}

#breaking-news {
    text-align: center;
    font-size: smaller;
    margin-bottom: 1em;
}

p.byline {
    font-style: italic;
    font-size: .75em;
    color: darkgray;
    margin-bottom: 1em;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.column {
    flex: 100%;
    max-width: 100%;
    margin-top: 1%;
}

.left-column {
    flex: 35%;
    max-width: 35%;
    margin-right: 1%;
}

.right-column {
    flex: 64%;
    max-width: 64%;
}

section {
    background-color: whitesmoke;
    padding: .5em 1em 1em 1em;
}

article {
    background-color: white;
    padding: .5em 1em .5em 1em;
}

p {
    padding: 0 0;
    margin: 0 0;
}

footer {
    margin-top: 1em;
    color: white;
    text-align: center;
    font-size: x-small;
    line-height: 3.5em;
}

    footer a {
        font-family: 'Lucida Calligraphy', Trebuchet, Georgia, serif;
    }

