@font-face {
	font-family: "Lexend";
	src: url("/font/static/Lexend-Regular.ttf")
}
html {
	font-size: 12pt;
	min-height: 100vh;
}
body {
	color: white;
	margin: 0;
	font-family: "Lexend","Verdana", sans-serif;
	background: linear-gradient(#209322, #faab33, #1da7f1);
	background-repeat: no-repeat;
}
header {
	display: flex;
	align-items: center;
	padding: 1rem 0 1rem 1rem;
	background-color: gray;
	gap: 0.5em;
	font-size: 3em;
}
text.header {
	margin: 0;
}
h1 { 
	margin: 0;
	text-align: center;
}
section.listing {
	display: flex;
	margin: 10rem auto;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 3rem;

}
div.card {
	margin: 6rem auto 6rem auto;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	background-color: #3ea692;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
	font-size: 22pt;
	border-radius: 10pt;
	box-shadow: 0 5px 15px black;
}
#cfclogo {
	height: 5rem;
}
#intro {
	display: flex;
	gap: 5rem;
	border-radius: 20px;
	margin: 4rem auto auto auto;
	padding: 2rem;
	width: 80%;
	max-width: 1200px;
	justify-content: center;
	align-items: center;
	background-color: #3ea692;
	font-size: 3em;
	box-shadow: 0 5px 15px black;
}
a.telegram {
	display: block;
	background-color: #3e87c8;
	border: 5px solid #336da2;
	border-radius: 20px;
	padding: 10px;
	color: white;
	text-decoration-line: none;
	box-shadow: 0 5px 15px black;
}
span.telegram {
	margin-left: 10px;
	position: relative;
	bottom: 1.5em;
}
@media only screen and (max-width: 1200px) {
	html {
		font-size: 8pt;
	}
	#intro {
		flex-direction: column;
		gap: 1rem;
		font-size: 2.2rem;
		text-align: center;
	}
	div.card {
		font-size: 12pt;
		width: 80%;
		max-width: 500px;
		text-align: center;
}
