div, body{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	box-sizing: border-box;
	font-family: 'Popper', sans-serif;
	text-align: center;
}
.container{
	display: flex;
	flex-direction: column;
	min-width: 320px;
	background-color: #333;
}
.header{
	text-align: center;
	font-size: 2rem;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.20), 0px 0px 2px #000;
	color:#fff;
	margin: 10px auto;
	
}
.buttons{
	margin:5px auto;
	display: flex;
	flex-direction: column;
}
.button{
	background-color: #ee9816;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	width: 300px;
	height: 65px;
	color: #fff;
	font-size: 1.5rem;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.20), 0px 0px 2px #000;
	box-shadow: 0px 2px 3px 4px rgba(0, 0, 0, 0.5);
	margin: 5px auto;
	line-height: 65px;
	transition: all 0.5s ease-in-out; 
	cursor: pointer;
}

.button:hover{
	transform: translateY(2px);
	box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.6);
}
.nolink{
	text-decoration: none;
	color:inherit;
}
.image{
	min-width: 320px;
	margin:0px auto;
	width: 100vw;
	height: 65vh;
	background-image: url('thanks.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	max-width: 390px;
	max-height: 800px;
}