/* Set the background color of body to tan */
.container {
	padding: 0;
	margin: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}
body {
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	font-family: Arial, sans-serif;
}
body:before {
	content: no-close-quote;
	background: url('../images/top_wing.png') no-repeat;
	position: fixed;
	width: 140px;
	height: 111px;
}
body:after {
	content: no-close-quote;
	background: url('../images/bottom_wing.png') no-repeat;
	position: fixed;
	bottom: 0px;
	right: 0px;
	width: 250px;
	height: 220px;
}
/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 750px) {
	body:before {
		top: 50px;
		left: 25px;
		z-index: -1;
	}
	body:after {
		bottom: 50px;
		z-index: -1;
		right: 25px;
	}
}


.button {
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0;
	text-align: center;
	justify-content: center;
	align-items: center;
	gap: 10px;
	display: inline-flex;
	text-decoration: none;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, .4);
	position: relative;
	font-family: Arial, sans-serif;
	padding: 0px;
	background: #fff;
	color: #4d4d4d;
	border-radius: 10px;
	font-size: 17px;
	margin-bottom: 0;
}

