body,
html {
	font-family: 'Lora', sans-serif;
	font-display: swap;
	padding: 1em;
}


p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.home {
	background-color: white;
	color: white;
	padding-top: 4px;
	padding-bottom: 3px;
	padding-left: 7px;
	padding-right: 7px;
	text-decoration: none;
	font-size: 1.1em;
	display: inline-block;
	border-radius: 2px;
	font-family: 'Roboto', sans-serif;
	font-display: swap;
	background-color: #757575;
}

.home:hover,
.home:focus {
	color: white;
	text-decoration: none;
}

.container {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}


@media screen and (max-width: 600px) {

	body,
	html {
		padding: 0.5em;
	}

}

@media screen and (max-width: 1000px) {

	.container {
		width: 100%;
	}

}

.btn {
	border: none;
	font-family: 'Roboto', sans-serif;
	font-display: swap;
	font-size: 1.7em;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 34px 26px;
	margin-bottom: 20px;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	text-decoration: none;
	float: left;
	margin-right: 10px;
}

.btn-success {
	background: #0F8544;
	color: #fff;
	border-radius: 13px;
	border: 4px solid #0a6d34;
	transition: background-color 0.3s ease, transform 0.2s ease;
	cursor: pointer;
}

.btn-success:hover {
  background-color: #0a6d34;
}

.btn-default {
	background: #ecf0f1;
	color: black;
	border-radius: 7px;
	box-shadow: 0 5px #ddd;
	padding: 15px 30px 15px 30px;
}

/********* CLEARFIX *********/
.cf:before,
.cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}