:root {
	--main-font: normal normal 200 normal small "SUSE", sans-serif;
}

body {
	display: flex;
	
	flex-direction: column;
	align-items: center;
	
	height: 100vh;
	width: calc(100vw - (100vw - 100%));
	margin: 0;
	margin-top: 5vh;

	font: var(--main-font);
	font-size: 1.8rem;
	color: white;

	background-color: #000000;
	background: linear-gradient(#000000, #3a7fff);
}

.titleCard {
	display: flex;
	flex-direction: column;
	width: 60vmin;
	margin-bottom: max(10vmin, 40px);
}

.subtitleCard {
	display: flex;
	flex-direction: row;
	justify-content: right;
	width: 50%;
	align-self: end;
}

.nameTitle {
	font: var(--main-font);
	fill: white;
}

.discipline {
	font: var(--main-font);
	fill: white;
	text-align: right;
}

.entries {
	display: flex;
	
	flex-direction: column;
	justify-content: center;
	align-items: center;

	container-type: inline-size;
	width: clamp(90vmin, 80vw, 150vh);
}

.entry {
	
	display: flex;
	
	flex-direction: column;
	justify-content: center;
	align-items: center;

	margin-bottom: 10vw;
	width: 100cqw;
	padding: 1cqmin;

	/* border: 0.2cqmin solid white;
	border-radius: 1cqmin; */
}

.entryTitle {
	text-decoration: unset;
	color: unset;
	font-size: 2.5rem;
}

.entryImage {
	max-width: 50cqw;
	height: auto;
	border-radius: 1cqmin;

	transition: 0.5s ease;
}

.entryImage:hover {
	transform: perspective(80cqw) rotateY(2deg) translateX(-0.5cqw) translateZ(-1cqh);
	filter: opacity(50%);
}

.entryPlatforms{
	display: flex;
	flex-direction: row;
	gap: 1rem;

	font-size: 1.5rem;

	padding: 0;
	margin: 0;
}

.entryPlatforms > li::marker {
	content: "";
}