/*
	Museum Styles
*/

body {
	font-family: 'Quicksand', sans-serif;
	font-size: 20px;
	background-color: cornflowerblue; 	/* pick a colour */
	color: white;
}

h1 {
	font-size: 40px;
}

select {
	font-family: 'Charmonman', cursive;
	background-color: orange;
}

table,
th,
td {
	vertical-align: top;
}

img {
	vertical-align: top;
}

/* make cool buttons */
input[type=submit] {
	background-color: #102F33;  	/* pick a colour */
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	-webkit-transition-duration: 0.4s;
	/* Safari */
	transition-duration: 0.4s;
}

input[type=submit]:hover {
	box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
