body
{
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

header
{
    background: #5D6D7E;
    color: #ECF0F1;
    padding: 10px;
}

nav
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a
{
	font-family: Arial, sans-serif;
    color: #ECF0F1;
    text-decoration: none;
    margin: 5px 10px;
    font-size: 1.8rem;
}

nav a:hover
{
    text-decoration: underline;
}

main
{
    max-width: 800px;
    width: 95%;
    margin: 20px auto;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
}

main h1
{
	font-family: Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #5D6D7E;
}

main li
{
	list-style-type:none;
}


article
{
    padding: 10px 0;
	text-align: justify;
    line-height: 1.6;
}

article h2
{
	font-family: Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #5D6D7E;
    text-decoration: underline;
}

article p
{
	font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #292524;
	margin-top: 10px;
}

article img
{
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
	margin-top: 10px;
}

article video
{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
}

article audio
{
    width: 100%;
    margin: 15px 0;
}

footer
{
	font-family: Arial, sans-serif;
    background: #5D6D7E;
    color: #ECF0F1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
	padding: 10px;
    font-size: 1.2rem;
}

.read-more
{
	font-family: Arial, sans-serif;
    display: inline-block;
    font-size: 1.1rem;
    color: #5D6D7E;
	text-decoration: none;
    margin-top: 10px;
}

.read-more:hover
{
	font-weight: bold;
}

.pub-title
{
	font-family: Arial, sans-serif;
    display: inline-block;
    font-size: 1rem;
    color: #5D6D7E;
	text-decoration: none;
    margin-top: 10px;
}

.pub-title:hover
{
	font-weight: bold;
}