body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1; /* Занимает всю доступную высоту */
}

.photo-container {
	background-image: url('data/img.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	width: 80%; /* Установим нужный размер */
	max-width: 3000px;
	height: 80%; /* Установим нужный размер */
	max-height: 1900px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px; /* Добавим отступы */
}

.content-container {
	background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный белый фон для текста */
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	width: 70%;
}

.title {
	font-size: 2em; /* Уменьшаем размер шрифта для заголовка */
	margin-bottom: 20px;
	font-weight: bold; /* Сделаем текст жирным */
	color: #333;
}

.buttons {
	display: flex;
	justify-content: center; /* Кнопки будут располагаться по центру */
	gap: 10px; /* Расстояние между кнопками */
}

.btn {
	background-color: #333;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s, transform 0.3s;
	text-align: center;
	font-weight: bold; /* Сделаем текст жирным */
	text-decoration: none
}

.btn:hover {
	background-color: white;
	color: #333;
	transform: scale(1.05);
}

.btn:hover #a {
	background-color: rgba(255, 255, 255, 0);
	color: #333;
}

#a {
	background-color: rgba(255, 255, 255, 0);
	text-align: center;
	display: flex;
	justify-content: center;
}

.footer-text {
	font-size: 0.8em;
	color: #666;
	margin: 20px 0;
	text-align: center;
}

.brochure {
	font-size: 1em;
	color: #666;
	margin-bottom: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
}

@media (max-width: 750px) {
	.title {
		font-size: 1em; /* Уменьшаем размер шрифта для заголовка */
	}
	.photo-container {
		width: 90%; /* Увеличиваем ширину контейнера на мобильных устройствах */
		height: 100%;
	}
	.content-container {
		padding: 30px; /* Уменьшаем отступы внутри контейнера */
	}
	.buttons {
		flex-direction: column; /* Кнопки располагаются одна под другой на маленьких экранах */
		gap: 10px; /* Расстояние между кнопками */
	}
	.btn {
		width: 100%;
		font-size: 0.5em;
	}
	#a {
		width: 75%;
		margin: 0 auto;
	}
	.h {
		font-size: 1em;
	}
}

.top-menu li{
	display: inline;
}
