@font-face {
	font-family: Montserrat;
	src: url(./fonts/Montserrat-Regular.ttf);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
	color: #fff;
}

body {
	background-image: url(/images/bg-image.jpg);
}

.container {
	max-width: 1240px;
	padding: 30px 20px;
	margin: 0 auto;
}

.container h1 {
	text-align: center;
	margin-bottom: 20px;
}

.container p {
	font-size: 18px;
	text-align: center;
	margin-bottom: 50px;
}

.content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
	gap: 30px;
}

.content ul {
	width: 380px;
	display: grid;
	grid-template-columns: auto;
	gap: 10px;
}

.content ul li {
	list-style: none;
}

.content ul li:first-child {
	font-size: 20px;
	font-weight: 700;
}

.content-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	gap: 30px;
}

.content-box a {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ccc;
	transition: 0.2s;
	cursor: pointer;
}

.content-box a:hover {
	transform: scale(1.1);
}

.content-box a:active {
	transform: scale(0.9);
}

@media (max-width: 840px) {
	.content {
		justify-content: center !important;
	}
	p {
		font-size: 16px !important;
	}
}
