/* 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: "Bookman";
/* 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 */
}

header {
	background-color: #1e2023;
}

header h1 {}

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

header .subheading {}

nav {
	background-color: #1e2023;
}

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;
}

main {}

main h2 {
	text-align: center;
}

main figure { margin: 0 0 .2rem 2%; width:100px; }

main figure img { width: 100%; }

.highlow p{
	display:inline;
	margin: 5px;
}

.current {
	width:50%;
	margin: auto;
}

.current h3 {
	float:right;
}

.current img {
	width: 100px;
	float: left;
}

.conditions {
	clear:both;
	text-align: center;
}

section {
	text-align: center;
}

.forecast {
	display:none;
}

article h3{
	margin:10px;
	border-top:2px solid black;
}

article p.town-article img {  /* This structure refers to img elements that are the posterity of paragraph elements within artcle elements */
width: 95%; /* fill the page in the small/phone view */
display: block;
margin:auto;
}

footer {
	background-color: #1e2023;
	color:white;
}
footer aside {}
footer>p {} /* This structure refers to p elements that are direct children of the footer element */

/* Other Class Selectors */
