@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
	--k6-color-identity: #1289D3;
	--k6-color-dark: #666;
	--k6-color-light: #8C8C8C;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	background-color: #000;
	color: #FFF;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: "DM Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
header,
footer {
	position: absolute;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	left: 0;
	margin: 0;
	padding: 0 10px;
	align-items: center;
	justify-content: center;
	background-color: #292929;
	background: linear-gradient(90deg, rgba(41,41,41,1) 0%, rgba(51,51,51,1) 50%, rgba(41,41,41,1) 100%);
	box-shadow: 0 0 6px rgba(25, 25, 25, 0.5);
	z-index: 10;
	color: var(--k6-color-dark);
	font-size: 0.85rem;
	line-height: 1.1rem;
}
header {
	top: 0;
}
footer {
	bottom: 0;
}
p {
	font-weight: 200;
}
p span {
	color: var(--k6-color-dark);
	font-weight: 300;
}
a {
	color: var(--k6-color-identity);
	outline: none;
	font-weight: 500;
	text-decoration: none;
}
a:hover {
	color: var(--k6-color-identity);
	text-decoration: underline;
}
hr {
	border-top: 0;
	border-bottom: 1px solid #FFF;
}
.container {
	position: absolute;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	padding: 55px 15px;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.content {
	letter-spacing: 0.5px;
}
.content > *:first-child {
	margin-top: 0 !important;
}
.content > *:last-child {
	margin-bottom: 0 !important;
}
.theme {
	position: absolute;
	display: block;
	width: 52px;
	height: 28px;
	left: 10px;
	top: 50px;
	z-index: 11;
}
.theme .toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 14px;
	background-color: #292929;
	cursor: pointer;
	transition: 0.25s;
}
.theme .toggle::before {
	position: absolute;
	display: block;
	content: '';
	height: 22px;
	width: 22px;
	left: 3px;
	bottom: 3px;
	border-radius: 50%;
	background-color: #FFF;
	background-image: url('toggle.svg');
	background-repeat: no-repeat;
	background-size: 16px 16px;
	background-position: center;
	transition: 0.25s;
}
.theme input[type="checkbox"]:checked + .toggle {
	background-color: var(--k6-color-identity);
}
.theme input[type="checkbox"]:focus + .toggle {
	box-shadow: 0 0 0 4px rgba(18, 137, 211, 0.25);
}
.theme input[type="checkbox"]:checked + .toggle::before {
	transform: translateX(24px);
}
.language {
	position: absolute;
	display: block;
	height: 28px;
	right: 10px;
	top: 50px;
	z-index: 12;
	font-size: 0.95rem;
	font-weight: 300;
	text-transform: uppercase;
}
.language .current {
	display: flex;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.language .current svg {
	display: block;
	width: 12px;
	margin-left: 3px;
	fill: #FFF;
	transition: 0.25s;
}
.language .current.active svg {
	transform: scale(-1, -1);
}
.language .dropdown {
	position: absolute;
	display: block;
	width: 100%;
	height: 0;
	top: 100%;
	right: 0;
	overflow: hidden;
}
.language .dropdown .menu {
	display: block;
	transition: 0.4s;
	filter: blur(25px);
}
.language .current.active + .dropdown {
	height: initial;
	overflow: initial;
}
.language .current.active + .dropdown .menu {
	filter: blur(0px);
}
.language .dropdown .item {
	display: block;
	cursor: pointer;
	transition: 0.25s;
}
.language .dropdown .item:hover {
	color: var(--k6-color-identity);
}
.theme input[type="checkbox"],
.language input[type="radio"] {
	position: absolute;
	width: 0;
	height: 0;
	margin: 0;
	opacity: 0;
	appearance: none;
	visibility: hidden;
	pointer-events: none;
}
.icon-cog,
.icon-coffee {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	animation-iteration-count: infinite;
}
.icon-cog {
	margin-right: 4px;
	background-image: url('cog.svg');
	animation-name: spin;
	animation-duration: 4s;
	animation-timing-function: linear;
}
.icon-coffee {
	margin-left: 5px;
	background-image: url('coffee.svg');
	animation-name: shake;
	animation-duration: 3s;
	animation-timing-function: ease;
}
#logo {
	width: 354px;
	height: auto;
}
#logo .animate-1 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
}
#logo .animate-2 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}
#logo .animate-3 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}
#logo .animate-4 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
#logo .animate-5 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}
#logo .animate-6 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
#logo .animate-7 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
#logo .animate-8 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
#logo .animate-9 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
#logo .animate-10 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
#logo .animate-11 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
#logo .animate-12 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}
#logo .animate-13 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
#logo .animate-14 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}
#logo .animate-15 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}
#logo .animate-16 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}
#logo .animate-17 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}
#logo .animate-18 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}
#logo .animate-19 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}
#logo .animate-20 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}
#logo .animate-21 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}
#logo .animate-22 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}
#logo .animate-23 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}
#logo .animate-24 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}
#logo .animate-25 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}
#logo .animate-26 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}
#logo .animate-27 {
	transition: fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
}
#logo .base,
#logo .identity {
	fill: transparent !important;
}
#logo.active .base {
	fill: rgb(255, 255, 255) !important;
}
#logo.active .identity {
	fill: var(--k6-color-identity) !important;
}

body.light {
	background-color: #FFF;
	color: #111;
}
body.light header,
body.light footer {
	background: #CCC;
	background: linear-gradient(90deg, rgba(204,204,204,1) 0%, rgba(221,221,221,1) 50%, rgba(204,204,204,1) 100%);
	box-shadow: none;
	color: var(--k6-color-light);
}
body.light header {
	border-bottom: 1px solid #C2C2C2;
}
body.light footer {
	border-top: 1px solid #C2C2C2;
}
body.light p span {
	color: #888;
}
body.light hr {
	border-color: #111;
}
body.light #logo.active .base {
	fill: rgb(0, 0, 0) !important;
}
body.light #logo.active .identity {
	fill: var(--k6-color-identity) !important;
}
body.light .language .current svg {
	fill: #000;
}

@media (max-width: 720px) {
	.container {
		flex-direction: column;
		gap: 0;
	}
	.content {
		margin-top: 20px;
		text-align: center;
	}
	#logo {
		width: 226px;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes shake {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 100%;
	}

	10% {
		transform: rotate(2deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-4deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(4deg);
	}

	80% {
		transform: rotate(-2deg);
	}

	90% {
		transform: rotate(2deg);
	}
}