@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Italic.woff2") format("woff2");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow-x: hidden;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
	filter: brightness(0.7);
}

.container {
	width: 100%;
	max-width: 1200px;
	padding: 2rem;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 1rem;
	backdrop-filter: blur(5px);
}

h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

h2 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 2rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: 1.25rem;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	text-decoration: none;
	color: #333;
	transition: transform 0.3s, box-shadow 0.3s;
	width: 280px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn img {
	object-fit: contain;
	flex-grow: 1;
	margin: 1rem 0;
}

.btn span {
	font-weight: 600;
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.container {
		padding: 1.5rem;
		margin: 0 0.5rem;
		border-radius: 0;
		min-height: 100vh;
	}

	body {
		justify-content: flex-start;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.2rem;
	}

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