@charset "UTF-8";
/* CSS Document */
* {
    box-sizing: border-box;
}

body {
    font-family:"Majesti Banner Medium";
    padding: 10px;
    background: #41393d;
}

/* Header/Blog Title */
.header {
    padding: 0px;
    text-align: left;
    background-color:transparent;
}

.header h1 {
    font-size: 50px;
}
.topnav ul {text-align:center;
	list-style-type: none;
	padding:8px; font-size: 20px}
/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #be1e2d;
}

/* Style the topnav links */
.topnav a {
    float: right;
    display: block;
    color: #ffffff;
    text-align: center;
    padding:8px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #41393d;
    color: #8a8c8f;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}
.leftcolumn h1 {font-size: 35px; color: #8a8c8f }
.leftcolumn h2 {color: #8a8c8f}
.leftcolumn p {font-size: 18px; }
/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    background-color: #8a8c8f;
    padding-left: 20px;
}


/* Add a card effect for articles */
.card {
    background-color: transparent;
    padding: 10px;
    margin-top: 20px;
	color: #ffffff
}
.rightcolumn h2 {color: #be1e2d;font-size: 30px}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */


.footer h2 {
    background-color: #41393d;
	color: #ffffff;
    text-align: center;
	font-size: 13px;
	padding: 10px;
	border-bottom-style: solid;
	border-top-style: solid;
	border-bottom-color: #8a8c8f;
	border-top-color: #8a8c8f;
	border-bottom-width: thin;
	border-top-width: thin;
}
.socialmedia {width: 30px; height: 30px}
.sitemap {background-color: #41393d;
	color: #ffffff;
	text-align:justify;
	font-size: 13px;text-decoration: none

	}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}

