* {
	box-sizing: border-box;
	margin: 0;
}
html, body {
	min-height: 100%;
}
html {
	font-size: 20px
}

body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	background: linear-gradient(
		180deg,
		#fff 0%,
		#dedede 100%
	);
	color: #222;
	background-attachment: fixed;
}
p {
	line-height: 1.6;
	margin-block-end: 0.5rem;
}
h1 {
	font-weight: 900;
	margin-block-end: 2rem;
	position: relative;
}
h1::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 6rem;
	height: 2px;
	background: #4c6fff;
}
.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}
.facebook-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-block-start: 1rem;
}
.facebook-groups a {
	display: block;
	background: #0866ff;
	color: white;
	padding: 1rem 1rem;
	text-decoration: none;
	font-weight: 600;
	border-radius: 0.3rem;
	position: relative;
	padding-right: 2.5rem;
	transition: background-color 0.5s;
}
.facebook-groups a::after {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: 20px;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E") center/contain no-repeat;
}
.facebook-groups a:hover {
	background: #0658dd;
}
@media(max-width:800px) {
	.facebook-groups {
		grid-template-columns: 1fr;
	}
}