:root {
	--stage-rotate: -30deg;
	--card-rotate: 30deg;
	--card-size: 70px;

	--background: #ffffff;
	--foreground: #808080;
	--title: #000000;
}

@font-face {
	font-family: "Handjet";
	src: url("fonts/Handjet-Regular.ttf");
	font-weight: 400;
}

@font-face {
	font-family: "Handjet";
	src: url("fonts/Handjet-Medium.ttf");
	font-weight: 500;
}

@media (min-width: 1240px) {
	:root {
		--card-size: 100px;
	}
}

* {
	box-sizing: border-box;
	user-select: none;
}

html,
body {
	height: 100vh;
	width: 100vw;
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	overflow: hidden;
	font-family: Handjet, monospace;
}

#root {
	display: flex;
	flex-direction: column;
	padding-top: 85px;

	@media (min-width: 1240px) {
		padding-top: 48px;
	}
}

.stage {
	transform: rotate(var(--stage-rotate));
	display: flex;
	align-items: center;
	justify-content: center;
}

.ring {
	position: relative;
	width: 100vw;
	height: 100%;
	z-index: 0;
	transform: translate(40%, 10%);

	@media (min-width: 400px) {
		transform: translate(50%, 30%);
	}
	@media (min-width: 1240px) {
		transform: translate(60%, 30%);
	}
}

.card {
	position: absolute;
	width: var(--card-size);
	height: var(--card-size);
	transform: rotate(var(--card-rotate));
	will-change: transform, filter;
	animation: appear 700ms ease-in;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes appear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.info-wrapper {
	display: flex;
	flex-direction: column;
	gap: 34px;
	padding-left: 22px;

	@media (min-width: 1240px) {
		height: 40px;
	}
}

.info {
	display: flex;
	flex-direction: column;
	gap: 16px;

	@media (min-width: 1240px) {
		gap: 28px;
	}
}

.about-us {
	display: flex;
	flex-direction: column;
	gap: 9px;
	width: 330px;

	@media (min-width: 1240px) {
		gap: 13px;
	}
}

.about-us h1 {
	color: var(--title);
	font-size: 18px;
	font-weight: 500;
	line-height: 92%;
	margin: 0;
}

.about-us p {
	font-size: 18px;
	font-weight: 400;
	line-height: 92%;
	margin: 0;
}

.contact {
	position: relative;
	z-index: 10;
	width: 330px;
	display: flex;
	flex-direction: column;
}

.contact a:hover {
	color: var(--title);
	text-decoration-color: var(--title);
	text-decoration: underline;
	transition: all 300ms ease-in-out;
}

.contact h2 {
	margin-bottom: 9px;
	color: var(--title);
	font-size: 18px;
	font-weight: 500;
	line-height: 92%;

	@media (min-width: 1240px) {
		margin-bottom: 13px;
	}
}

.contact span {
	color: var(--foreground);
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 92%;
	margin: 0;
}

.contact a {
	color: var(--foreground);
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 92%;
	margin: 0;
}

.logo-wrapper {
	height: 37px;
	width: fit-content;
	pointer-events: none;

	@media (min-width: 1240px) {
		height: 50px;
	}
}

.logo {
	height: 100%;
	object-fit: contain;
}

.socials {
	position: fixed;
	bottom: 55px;
	left: 22px;
	display: flex;
	flex-direction: column;

	@media (min-width: 1240px) {
		left: 40px;
	}
}

.socials a {
	color: var(--foreground);
	font-size: 18px;
	font-weight: 500;
	line-height: 92%;
	text-decoration-color: var(--foreground);
}

.socials a:hover {
	color: var(--title);
	text-decoration-color: var(--title);
	transition: all 300ms ease-in-out;
}
