main {
	width: 100%;
	height: 100%;
	position: relative;
}

main > section {
	width: 100%;
	height: calc(100% - 90px);
	color: #ffffff;
	display: flex;
	position: relative;
}

main > section > header {
	width: 100%;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	z-index: 300;
	left: 0;
	top: 0;
}

main > section > article {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	z-index: 200;
}

main > section > article:nth-child(2) {
	background: url('/resources/image/main/background-annual.jpg') no-repeat center;
	background-size: cover;
}

main > section > article:nth-child(3) {
	background: url('/resources/image/main/background-summer.jpg') no-repeat center;
	background-size: cover;
}

main > section > article::after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: 100;
	left: 0;
	top: 0;
}

main > section > article::after {
	background: rgba(86, 86, 86, 0.25);
}

main > section > article:hover::after {
	transition: 1s ease;
	background: rgba(0, 0, 0, 0);
}

main > section > article > div {
	display: flex;
	justify-content: center;
}

main > section > article img {
	width: 70px;
}

main > section > article > div:nth-child(1) {
	padding-bottom: 10px;
}

main > section > article > div:nth-child(2) {
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 800;
}

main > section > article > div:nth-child(3) {
	font-family: 'Montserrat', sans-serif;
	font-size: 60px;
	font-weight: 800;
	padding-bottom: 50px;
}

main > section > article a {
	padding: 10px 30px;
	border: solid 1px #fff;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	z-index: 200;
}

main > section > article a::after {
	content: "\f101";
	font-family: "Font Awesome 6 Free", sans-serif;
	font-weight: bold;
}

main > section > article a:hover {
	-webkit-animation: wobble-hor-bottom 0.8s both;
	animation: wobble-hor-bottom 0.8s both;
}

main > footer {
	width: 100%;
	min-width: initial;
	max-width: initial;
	height: initial;
	padding: 20px;
	position: absolute;
	z-index: 300;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 768px) {
	main {
		display: block;
	}

	main > section {
		flex-direction: column;
		height: initial;
	}

	main > section > header {
		padding: 10px;
	}

	main > section > article {
		width: 100%;
		aspect-ratio: 1920 / 1960;
	}

	main > section > article img {
		width: 56px;
	}

	main > section > article > div:nth-child(3) {
		font-size: 45px;
	}

	main > footer {
		position: relative;
	}
}