:root {
	--color-main: #6C2B3B;
	--color-gray: #ffffee;
}

body {
	min-height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--color-main);
	font-family: 'Helvetica', Arial, sans-serif;
}

.logo {
	max-width: 900px;
	margin: 0 10vw 7rem 10vw;
	display: flex;
	align-items: center;
	justify-content: center;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		display: block;
	}
}

.flip-container {
	perspective: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 2rem;
}

.flipper {
	position: relative;
	width: 320px;
	height: 60px;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.flipped {
	transform: rotateY(180deg);
}

.front,
.back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	font-size: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	background: #fff;
	color: var(--color-main);
	transition: all 0.2s;
}

.back {
	transform: rotateY(180deg);
	border: 1px solid #222;
	cursor: default;
}



.back a {
	color: #222;
	text-decoration: underline;
	font-size: 1.15rem;
	word-break: break-all;
}



@media screen and (max-width: 600px) {
	.logo {
		margin-bottom: 4rem;
	}

	.flip-container {
		margin: 0 1rem;
	}

	.flipper {
		width: 280px;
		height: 52px;
	}

	.front,
	.back {
		font-size: 1rem;
	}
}