@font-face {
	font-family: 'Founders Grotesk';
	src: url('fonts/FoundersGrotesk-Regular.woff2') format('woff2'),
		url('fonts/FoundersGrotesk-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

body {
	height: 100vh;
	background: #d7b292;
	color: #fff;
	display: grid;
	place-content: center;
  font-family: 'Founders Grotesk';
}

section.main {
	display: flex;
	max-width: 26rem;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
}

p {
	text-align: center;
	font-size: 1.3rem;
	line-height: 160%;
}

p.small {
	font-size: 1.1rem;
}

.logo {
	width: 16rem;
	height: auto;
	margin-bottom: 4rem;
}

.button {
	display: inline-flex;
	padding: 1rem 2rem;
	margin: 4rem 0 2rem 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	background: #b28863;
	color: #fff;
	font-size: 1.3rem;
	border: none;
	transition: background-color 0.6s;
	text-decoration: none;
}

.button:hover {
	background-color: rgba(178, 136, 99, 0.8);
}
