body {
	font-family: "DM Sans", sans-serif;
	width: 100%;
	background-color: #554031;
}

.container {
	padding-left: 16px;
	padding-right: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wrapper {
	width: 100%;
	min-height: 100dvh;
	overflow: hidden;
	display: flex;
	flex-direction: column;

	main {
		flex-grow: 1;
	}
}

.brown {
	color: #f1a873;
}
.yellow {
	color: #f1c069;
}

.highlight {
	color: #ffe6b9;
}

.main__link {
	border-radius: 10px;
	background: #f1c069;
	min-width: 206.06px;
	max-width: 206.06px;
	min-height: 40px;
	text-align: center;
	color: #09040c;
	font-family: "DM Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	transition: background-color 0.3s;

	&:hover {
		background-color: #e9b250;

		.main__link-arrow::after {
			transform: translateY(-40%) translateX(4px);
		}
	}
}
.main__link-arrow {
	width: 20px;
	height: 20px;
	background-image: url("/img/circle-yellow.svg");
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin-left: 15px;
	position: relative;

	&::after {
		content: "";
		position: absolute;
		display: block;
		background-image: url(/img/arrow-right.svg);
		position: absolute;
		top: 40%;
		transform: translateY(-40%);
		left: -8px;
		width: 19.98px;
		height: 13.75px;
		background-repeat: no-repeat;
		transition: transform 0.3s ease;
	}
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 32px;
	background-color: #0000005b;
	align-items: center;
	justify-content: center;
	z-index: 999;
}
.modal-inner {
	max-width: 450px;
	width: 100%;
	border-radius: 16px;
	padding: 20px;
	background-color: #543f30;
	position: relative;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#close {
	position: absolute;
	top: 0;
	right: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}

@media screen and (min-width: 744px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media screen and (min-width: 1440px) {
	.container {
		max-width: 1320px;
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.main__link {
		font-size: 18px;
		min-width: 259px;
	}
}
