/* poppins-500 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/poppins-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/poppins-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-500 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/open-sans-v43-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

body {
	background-color: #000;
	background: url('../images/background.jpg') no-repeat center center fixed;
	background-size: cover;
	height: 100vh;
	width: 100vw;
}

.container {
	width: 460px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	padding-top: 60px;
	padding-bottom: 100px;
}

.header {
	background-color: #000;
	padding: 100px 60px 60px 60px;
	margin-top: 100px;
}

.content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 60px;
}

.content-item {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 40px 60px;
	background-color: #000;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

a.content-item:hover {
	background-color: #f5b200;
}

.content-item p {
	font-size: 20px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-align: center;
}

p a {
	text-decoration: none;
	color: #fff;
}

p a:hover {
	text-decoration: underline;
}

.content-item h2 {
	font-size: 24px;
	color: #f5b200;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-align: center;
}

a.content-item:hover h2 {
	color: #000;
}
