/*	Name: Sven Hansen
	Date: 04.01.2018
	Section: CSE 154 AH
	
	This is the stylesheet for index.html*/

@import url('https://fonts.googleapis.com/css?family=Roboto');
	
body {
	font-family: "Roboto", sans-serif;
}	

footer {
	font-family: serif;
}

li {
	margin: 1em;
}

strong {
	text-transform: uppercase;
}

.puzzle {
	width: 300px;
	height: 350px;
	margin: 10px;
	border: 4px solid gray;
	border-radius: 6px;
	background-color: #F7F7F7;
	overflow-y: scroll;
}

.puzzle img {
	display: block;
	border: 3px solid gray;
	border-radius: 4px;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	height: auto;
	margin-top: 10px;
}

.puzzle p, h3, nav {
	margin: 10px;
	text-align:center;
}

#introduction > h2, strong {
	text-decoration: underline;
}

#introduction, header {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#puzzle-container {
	display: flex;
	flex-flow: row wrap;
}