@charset "UTF-8";

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: #333;
	line-height: 1.6;
}

/* Контент страницы */
.content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.site-header {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.site-header h1 {
	margin: 0;
	font-size: 24px;
}

.section p {
	margin: 0 0 16px;
}

.section code {
	background: #f0f0f0;
	padding: 2px 4px;
	border-radius: 3px;
	font-family: monospace;
}

/* Заголовок секции */
.section h2 {
	margin: 0 0 16px;
	font-size: 20px;
	color: #555;
}

/* Модальное окно */
.modal {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
}
.modal-backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .5);
}
.modal-content {
	position: relative;
	z-index: 2;
	background-color: #fff;
	padding: 10px 30px 24px 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
	border-radius: 15px;
}
.modal-content code {
	background: #f0f0f0;
	padding: 2px 4px;
	border-radius: 3px;
	font-family: monospace;
}

@media (max-width: 800px) {
	.modal-content {
		margin: 0 20px;
	}
}