.wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 90vw;
	min-width: 700px;
	margin: 0 auto;
}


h1 {
	margin: 20vh 0 .3em 0;
	font-size: 7vw;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

h2 {
	text-align: center;
	font-family: 'Nunito', sans-serif;	
	font-size: 4vw;
}

button {
	margin-top: 1em;
	font-family: 'Nunito', sans-serif;
	font-size: 4vw;
	background: white;
	padding: 0 .2em;
	border: gray 4px outset;
	border-radius: 5px;
	box-shadow: black 6px 6px;
}

button:hover {
	background: blue;
	color: white;
	cursor: pointer;
}

@media only screen and (max-width : 500px) {
	.wrap {
		max-width: 80vw;
        min-width: 280px;
	}
	
	h1 {
		margin: 20vh 0 .3em 0;
		font-size: 10vh;
	}

	h2 {
		font-size: 5vh;
	}
	
	button {
		font-size: 5vh;
	}
	
}
