/* Set the background color of body to tan */
body {
	padding: 0;
	margin: 0;
	height: 100vh;
	width: 100vw;
	background-color: #FFCBD6;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(./bg-desktop.png);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 750px) {
	body {
		background-color: #FFCBD6;
		background-image: url(./bg-mobile.png);
	}
}


.button {
	font-family: Commissioner, monospace;
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0;
	text-align: center;
	padding-left: 52px;
	padding-right: 52px;
	padding-top: 16px;
	padding-bottom: 16px;
	background: #FF5E7D;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	display: inline-flex;
	text-decoration: none;
}

.button:hover {
	background: #ff738d;
}

