* {
	margin: 0;
	padding: 0;
	font-family: "Inter";
	text-decoration: none;
	list-style: none;
}

.hover-underline {
	position: relative;
}

.hover-underline::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background-color: currentColor;
	transition: ease 0.3s;
	transform: translateX(-50%);
}

.hover-underline:hover::after {
	width: 100%;
}

.back-btn::before {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/img/arrow-left.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	left: 0;
	bottom: 0;
	transform: translateX(-110%);
	height: 100%;
	aspect-ratio: 1;
}