@font-face {
	font-display: swap;
	font-family: 'Kanit';
	font-style: normal;
	font-weight: 100;
	src: url('../fonts/kanit-100.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Kanit';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/kanit-700.woff2') format('woff2');
}
body {
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Kanit', sans-serif;
	background-image: linear-gradient(90deg, #afced6, #d6e3e6);
}
.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem;
}
.container img {
	max-width: 90%;
	height: auto;
	aspect-ratio: 3 / 2;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%), linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
	-webkit-mask-composite: intersect;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: cover;
	mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%), linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
	mask-composite: intersect;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: cover;
}
.container div {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 2rem;
}
.container div a {
	text-decoration: none;
	aspect-ratio: 1 / 1;
	padding: 5px 12px;
	margin: 0 8px;
	font-weight: bold;
	background: #fff;
	color: #34567366;
	border-radius: 50%;
	box-shadow: 0 0 10px 0px #34567366;
}
h1 {
	margin-top: 1rem;
	font-size: 4rem;
	font-weight: 100;
	color: #345673;
	text-transform: uppercase;
}
a {
	text-decoration: none;
}
@media (max-width: 600px) {
	h1 {
		font-size: 2rem;
	}
}
.site-footer {
	text-align: center;
	padding: 24px 0;
	font-size: 1.25rem;
}
.site-footer a {
	color: #345673;
	text-decoration: none;
}
.site-footer a:hover {
	text-decoration: underline;
}
.imprint-popover {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 75%;
	width: 450px;
	background: #fffffff0;
	border-radius: 8px;
	box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.75);
	padding: 20px 24px;
	z-index: 1000;
	display: none;
	font-size: 1.1rem;
	line-height: 1.5;
	border: 5px solid #fff;
}
.imprint-popover h3 {
	margin-top: 0;
	font-size: 1.25rem;
}
.imprint-popover a {
	color: #0066cc;
}
.imprint-close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: none;
	background: none;
	font-size: 2rem;
	cursor: pointer;
	color: #666;
}