/* styles.css 
   Author: Sean W. Myers
   Date: September 2018
*/

body {
}

#container {
	position: relative;
	display: block;
	overflow: hidden;
	background-color: #2F3033;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	top: 0;
	left: 0;
	height: 535px;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;

}

h2 {
	position: relative;
	display: block;
	font-family: 'Roboto Slab', sans-serif;
	font-size: 35px;
	font-weight: 300;
	color: white;
	margin: 20px 0 20px 0;
}

h3 {
	display: none;
	font-size: 24px;
	font-weight: 400;
	color: white;
	margin: 0px 0 0px 0;
	padding-left: 15px;
	width: auto;
}

#headLine {
	position: relative;
	display: inline-block;
	border-top: 3px solid #32c1d1;
	padding-top: 4px;
	padding-right: 1px;
}

h4 {
	position: relative;
	display: block;
	color: white;
	font-size: 18px;
	font-weight: 400;
	margin-top: 8px;
	margin-bottom: 3px;
	text-decoration: underline;
	font-style: italic;
}

h5 {
	position: relative;
	display: inline-block;
	color: white;
	font-size: 18px;
	font-weight: 500;
	margin-top: 16px;
	margin-bottom: 10px;
	padding-left: 30px;
}

.pink {
	color: #FF8689;
}

.facts {
	font-weight: 300;
}

#blurb {
	position: relative;
	display: block;
	font-size: 17px;
	width: 560px;
	color: white;
	font-weight: 300;
	margin-top: 0px;
	padding-left: 15px;
}

#instructions {
	text-align: center;
	font-style: italic;
	font-weight: 300;
	font-size: 21px;
	color: white;
	margin-left: 20px;

}

.buttonBox {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 380px;
	height: 420px;
	margin-top: 0px;
	top: 0;
	left: 0;
}

#answerBox {
	position: relative;
	display: inline-block;
	float: left;
	overflow: hidden;
	text-align: left;
	width: 620px;
	top: 0;
	left: 0;
	margin-top: 10px;
	margin-left: 30px;
}

button {
	background-color: #4F5054;
	color: white;
	display: block;
	overflow: hidden;
	position: relative;
	width: 220px;
	height: 56px;
	border: 2px solid white;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	margin: 8px auto 8px auto;
	cursor: pointer;
}

button:hover {
    color: #32c1d1;
    border-color: #32c1d1;
}

button:active {
    background-color: #EDF5FC;
    color: black;
    text-decoration: none;
}

button:focus {
	outline: 0;
	border: 2px solid #d2d2d2;
}

img {
	background-color: white;
	cursor: pointer;
	padding:5px;
	width: 90px;
	height: 90px;
}

/*	MOBILE  */

@media only screen and (max-width: 500px ) {

	#container {
		width: 318px;
		height: 1025px;
	}

	.buttonBox {
		position: relative;
		display: block;
		width: 318px;
		height: 218px;
		margin-left: auto;
		margin-right: auto;
	}

	img {
		width: 60px;
		height: 60px;
	}

	#answerBox {
		display: block;
		width: 318px;
		margin-left: auto;
		margin-right: auto;
		float: left;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 22px;
		width: 93%;
		text-align: center;
		margin-top: 10px;
	}

	#blurb {
		width: 290px;
		font-size: 16px;
	}

	#instructions {
		display: block;
		position: relative;
		top: -40px;
	}


}