/* This main css file contains the default rules and is geared toward the small/phone view */

* { box-sizing: border-box;}  /* This wildcard applies to all elements ensuring a box layout model */

body {
	font-size: 16px;
	font-family: "Arsenal";
/* Declare the base font-family - from google font api or other */
}

header, nav, main, footer { /* the comma means apply the following CSS declarations to all of the listed elements */
/* Declare the maximum width and other main element rules to limit the stretch on wide views */
}

/* -----------------This is code to run the hamburger menu---------------------------*/

.hamburger {
	display: block;
	position: absolute;
	top: 2.0rem;
	right: 1.25rem;
}

.navigation {
	list-style: none;
	padding-left: 0;
}

.navigation li {
	display: none;
}



/*@media only screen and (min-width: 37.5em) {
	header,	nav {
		margin: 0 auto;
		max-width: 100%;
	}

	h1 {
		text-align: center;
	}

	.hamburger {
		display: none;
	}

	.navigation {
		background-color: #333;
		overflow: hidden;
		text-align: center;
	}

	.navigation li {
		display: inline-block;
		margin-left: .25rem;
	}

	.navigation a {
		display: block;
		color: #eee;
		padding: .5rem;
		text-align: center;
		text-decoration: none;
	}

	.navigation a:hover {
		color: #000;
		background-color: #777;
	}

}*/

/* End the hamburger menu code*/
/* ---------------------------------------------------------------*/

/*------------------------Begin Header---------------------*/

header {
	background-color: #1e2023;
}

header img {
	width: 95%;
	display: block;
	margin: auto;
}

/*-----------------BEGIN NAV--------------------------*/

/* When the responsive class is added to the unordered list on hamburger button click
placed in a media query in order to accomodate the toggle when in wider view*/
@media only screen and (max-width: 37.5em) {
	.navigation.responsive {
		position: relative;
	}

	.navigation.responsive li {
		background-color: #eee;
		display: block;
		width: 100%;
		margin: 2px 0;
		border: 1px solid #ddd;
	}

	.navigation.responsive li a {
		padding: 1rem;
		text-align: center;
		display: block;
		text-decoration:none;
	}

	.navigation.responsive li a:hover {
		background-color: #ddd;
	}
}

nav {
	background-color: #1e2023;
}

nav li:active {
	background-color: #4CAF50;
}

/*nav button {
	display: none;  /*Not needed at this time
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 150px;
	background-color: #f1f1f1;
	border: 1px solid #555;
}

nav ul li {
	text-align: center;
	border-bottom: 1px solid #555;
	font-size:.7em;

}

nav ul li a {
	display: block;
	color: #000;
	padding: 8px 16px;
	text-decoration: none;
}

nav ul li.active a {
	background-color: #4CAF50;
}
li a:hover {
	background-color: #555;
	color: white;
}*/

/*-------------------------BEGIN BODY-----------------------*/

body {

}
main {
	background-color: lightgrey;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

.pageTitleContainer {
	display: flex;
	justify-content: center;
	font-size: 2em;
	border-bottom: 2px solid black;
}

/*-----------------------BEGIN WEATHER SUMMARY------------------*/

.container {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	border-bottom: 2px solid black;
}

.container_sub {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.title {
	font-size: 1.5em;
	font-weight; bold;
}

#windChill {
	font-weight: bold;
}

section {
	text-align: center;
}

/*------------------------BEGIN FORECAST-------------------*/

.forecastContainer {
	display: none;
}

/*-------------------------BEGIN ARTICLE----------------------*/

.articleContainer {
	display: flex;
	padding-right: 15px;
	padding-left: 15px;
	padding-top: 15px;
	flex-direction: column;
}

.articleImage {
	margin: auto;
}

/*.subArticleContainer {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}*/

/*---------------------------------BEGIN FOOTER----------------------*/

footer {
	background-color: #1e2023;
	color:white;

}
.asideContainer {
	display: flex;
	margin-left: 15px;
}
