* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	background-color: #FF073A;
	overflow: hidden;
}

.menu-list {
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: 100%;
}

.menu-item {
	--c: #fff;
	--g1: #fff;
	--g2: #fff;
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
	transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item[data-color="pink"]  { --c: #FF10F0; --g1: #1414FF; --g2: #000000; }
.menu-item[data-color="black"] { --c: #000000; --g1: #FF10F0; --g2: #1414FF; }
.menu-item[data-color="blue"]  { --c: #1414FF; --g1: #FF10F0; --g2: #000000; }

.menu-item:hover {
	flex: 2.4;
}

.menu-label {
	position: relative;
	display: inline-block;
	color: var(--c);
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	line-height: 0.9;
	white-space: nowrap;
	letter-spacing: -0.02em;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.menu-item:hover .menu-label {
	opacity: 1;
	transition: opacity 0.2s ease 0.15s;
}

.menu-label::before,
.menu-label::after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

.menu-label::before {
	color: var(--g1);
	transform: translate(-0.05em, 0.025em);
}

.menu-label::after {
	color: var(--g2);
	transform: translate(0.05em, -0.025em);
}

.menu-item[data-color="pink"] .menu-label,
.menu-item[data-color="blue"] .menu-label {
	font-size: 13vw;
}

.menu-item[data-color="black"] .menu-label {
	font-size: 24vw;
}

@media (max-width: 640px) {
	.menu-item[data-color="pink"] .menu-label,
	.menu-item[data-color="blue"] .menu-label {
		font-size: 18vw;
	}
	.menu-item[data-color="black"] .menu-label {
		font-size: 30vw;
	}
}

@media (prefers-reduced-motion: reduce) {
	.menu-item,
	.menu-label {
		transition: none;
	}
}
