@import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Slab');

body {
	background-color: white;
	font-family: 'Roboto', Calibri, sans-serif;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	
	background-image: none;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Slab', Times New Roman, serif;
	letter-spacing: 1px;
}

.container {
	background-color: white;
	width: 70%;
	padding: 5% 1%;
	margin: 0% auto 10%;	
}

.slideshowWidth {
	width: 30%;
}

.unorderedList {
	list-style-type: none;
}

/* default link color unless specified */
a {
	text-decoration: none;
	color: gray;
	transition: color 0.2s;
}

a:hover {
	color: darkgray;
	transition: color 0.2s;
}

.dummy {
	text-align: center;
	vertical-align: center;
	margin: 10vh auto;
}

.center_wrapper {
	display: flex; 
	vertical-align: middle;
	justify-content: center; 
	align-items: center; 
	padding: 0;
	margin: 0;
}

.button {
	text-decoration: none;
	font-size: 110%;
	font-family: 'Roboto Slab', Times New Roman, serif;
	color: white;
	
	border: none;
	outline: none;
	
	background: #444;
	padding: 1% 3%;
	margin: auto;
	
	width: 30%;
	overflow: hidden;
	transition: background 0.2s;
}

.button:hover {
	cursor: pointer;
	background: #222;
	transition: background 0.2s;
}

.button a {
	text-decoration: none;
	font-size: 150%;
	font-family: 'Roboto Slab', Times New Roman, serif;
	color: white;
}

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

	.dummy {
		margin: 0 auto;
	}
	
	.container {
		width: 100%;
	}
	.slideshowWidth {
		width: 100%;
	}
}
