body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 100%;
}

.section {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.top,
.middle,
.bottom {
	flex: 1;
}

.logo {
	width: 240px;
	height: auto;
}

.middle {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	border: 2px solid #d4af37;
	border-radius: 5px;
	color: #d4af37;
	font-size: 21.6px;
	height: 65px;
	margin: 10px 0;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 0.3s,
		color 0.3s;
	width: 240px;
	padding: 0 10px;
}

.button span {
	display: inline-block;
	line-height: 1;
	transform: translateY(2px);
}

.button:focus {
	outline: none;
}

.button:active {
	background-color: rgba(212, 175, 55, 0.3);
	color: #d4af37;
}

.button:hover {
	background-color: rgba(212, 175, 55, 0.2);
	color: #d4af37;
}

.icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.icon {
	width: 40px;
	height: 40px;
}

.icon img {
	width: 100%;
	height: 100%;
	transition: transform 0.3s;
}

.icon:hover img {
	transform: scale(1.1);
}

.job-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background:
		linear-gradient(#fef8fa, #fef8fa) padding-box,
		linear-gradient(135deg, #15803d 0%, #065f46 100%) border-box;
	border: 2px solid transparent;
	border-radius: 9999px;
	font-size: 16px;
	font-weight: 600;
	height: 48px;
	text-decoration: none;
	text-transform: uppercase;
	width: 200px;
	transition: all 0.3s ease;
}

.job-button span {
	display: inline-block;
	line-height: 1;
	transform: translateY(2px);
	background: linear-gradient(135deg, #15803d 0%, #065f46 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.job-button:focus {
	outline: none;
}

@media (max-width: 768px) {
	.logo {
		width: 200px;
	}

	.button {
		width: 220px;
		font-size: 19px;
		height: 60px;
	}

	.job-button {
		width: 180px;
		height: 44px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.logo {
		width: 180px;
	}

	.button {
		width: 200px;
		font-size: 18px;
		height: 55px;
	}

	.job-button {
		width: 160px;
		height: 40px;
		font-size: 13px;
	}
}
