@import 'index.css';

aside {
	/* border: 1px dashed var(--light); */
	text-align: start;
}

aside h3 {
	text-transform: capitalize;
	font-size: 1.618rem;
	margin: calc(var(--margin) / 4);
}

.mustache__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding: calc(var(--padding) / 4);
}

.mustache__list-item {
	/* border: 1px solid var(--light); */
	color: var(--dark);
	/* margin-bottom: var(--margin); */
	height: 2rem;
	width: 6rem;
	background-size: 6rem 2rem;
	background-position: center;
}

.mustache__list-item:nth-child(even) {
	margin-left: var(--margin);
	margin-right: var(--margin);
}

#mustache__list-item-01 {
	background-image: url(../img/handlebar-placeholder.svg);
}

#mustache__list-item-02 {
	background-image: url(../img/toothbrush-placeholder.svg);
}

#mustache__list-item-03 {
	background-image: url(../img/french-placeholder.svg);
}

.stage {
	position: relative;
	width: 100%;
	margin: calc(var(--margin) / 4);
	height: calc(100vh / 1.618);
	border: var(--border);
	border-radius: var(--borderRadius);
	background-image: url(../img/face-001.jpg);
	background-clip: content-box;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* tablet */
@media only screen and (min-width: 768px) {
	.stage {
		margin: 0 auto;
		max-width: calc(100vh / 1.618);
	}
}
/* desktop */
@media only screen and (min-width: 1080px) {
	html {
		font-size: 22px;
	}
}

.mustache {
	display: block;
	cursor: pointer;
}

.mustache__receptacle {
	position: absolute;
	display: block;
	z-index: -100;
}

.mustache__placeholder {
	display: block;
}

.mustache,
.mustache__receptacle,
.mustache__placeholder {
	width: 100%;
	height: 100%;
}

.mustache__zone {
	display: flex;
	justify-content: center;
	position: absolute;
	left: calc(50% - 3rem);
	top: calc(50% + 1.2rem);
	/* border: 2px solid var(--dark); */
	align-items: center;
	height: 2rem;
	width: 6rem;
	background-size: 6rem 2rem;
	background-position: center;
}

