html {
	font-family: 'Raleway';
}

p {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
}

a.button {
	padding: 0.6em 1em;
	background-color: #f00 !important;
	color: #fff;
	font-size: 18px;
	border-radius: 5px;
	text-decoration: none;
}

div.buttons {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

div.buttons > a.button {
	display: block;
	margin: auto 5px;
	white-space: nowrap;
}

@media screen and (max-width: 550px) {  /*** mobile ***/
	p {
		font-size: 20px;
	}
	
	div.buttons {
		display: block;
	}
	
	div.buttons > a.button {
		margin-top: 5px;
		margin-bottom: 5px;
	}
}