div.bookButtonWrapper {
	display: block;
	height: 10em;
	width: 100%;
	text-align: right;
	padding-top: 5em;
}

div.bookButtonWrapper a.bookButton, div.bookButtonWrapper a.bookButton:visited {
	border-radius: 5px;
	padding: 1em;
	background-color: var(--purplish);
	color: #FFF;
	font-weight: 900;
	font-size: 1.2em;
	margin-right: 3em;
	transition: all 0.2s;
}

div.bookButtonWrapper  a.bookButton:hover {
	background-color: var(--royal-purple);
	transition: all 0.2s;
}

@media (max-width: 61.9rem) {
	
	div.bookButtonWrapper {
		text-align: center;
	}
	
	div.bookButtonWrapper a.bookButton {
		margin: 0;
	}
}