main {
	flex: 1;
}

#mainSection {
	width: 85%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 7%;
}

#mainLeft, #mainRight {
	width: 49%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

#mainLeft > h2 {
	font-size: 2.45rem;
	margin: 0;
}

#mainLeft > hr {
	border: 1px solid var(--accent);
	width: 75%;
	margin-left: 0;
}

#mainLeft > span {
	font-size: 1.25rem;
}

.shopButton {
    position: relative;
    text-decoration: none;
    font-size: 1.75rem;
	display: block;
	align-self: center;
	margin-top: 3%;
}

.shopButton::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: transparent;
    border-bottom: 2px solid var(--secondary);
    transition: width .5s ease;
}

.shopButton:hover::before {
    width: 100%;
}

#mainRight > img {
	border-radius: 16px;
	width: 100%;
}

@media (max-width: 992px) {
	#mainSection {
		flex-direction: column;
	}

	#mainLeft, #mainRight {
		width: 100%;
	}

	#mainRight {
		margin-top: 5%;
	}
}