/* Google Font */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Press+Start+2P');

/* GLOBAL SETTINGS
   ----------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section,
input, textarea, label {
	display: block;
}

body {
	line-height: 1;
	font-family: 'Press Start 2P', sans-serif;
	color: #000;
	text-align: center;
}

h1, h2 {
	font-family: 'Press Start 2P', cursive;
}

h1 {
	font-size: 2em;
	margin: 25px 0;
}

h2 {
	font-size: 1.5em;
	margin: 5px 0px;
}

p {
	margin: 1em 0;
}

/* FORM STYLES
   ----------------------------- */

input {
	width: 100%;
	min-height: 45px;
	border: 3px solid #000;
	padding: 0 5px;
	margin: 20px auto;
	text-align: center;
	font-size: 1.5em;
	box-sizing: border-box;
}

textarea {
	width: 100%;
	min-height: 150px;
	border: 1px solid #000;
	padding: 5px;
	box-sizing: border-box;
}

input:focus,
textarea:focus {
	outline: none;
}

.weatherImage {
	padding: 15px;
}

.orSubmit {
	text-transform: uppercase;
    font-size: 1.5em;	
}

.weatherSearch {
	margin: 20px 0;
}

#weatherSubmit {
    background: black;
    border: 0;
    color: white;
    font: normal 2em 'Press Start 2P';
    width: 100%;
    padding: 10px 0;
    text-transform: uppercase;
	margin: 10px 0;
}

.weatherResponse {
	text-transform: uppercase;
	font-size: 1.5em;
	margin: 20px 0;
}

.weatherResponse img {
	padding: 50px 0;
	width: 100%;
	max-width: 350px;
	height: auto;
}

.weatherDescription {
	font-size: .45em;
	padding: 10px 0;
}

.weatherTemperature::after {
	content: "\00B0";
}

.container {
	width: 100%;
	margin: auto;
	padding: 0 15px;
	box-sizing: border-box;
}

header {
	text-align: left;
	display: none;
	padding: 10px 0;
}

@media only screen and (min-width: 768px){
	.container {
		width: 750px;
	}
	input {
		width: 50%;
	}
	#weatherSubmit {
		width: 50%;
	}
}

@media only screen and (min-width: 992px){
	.container {
		width: 970px;
	}
}

@media only screen and (min-width: 1200px){
	.container {
		width: 1170px;
	}
}