body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
	color: #333;
}
header {
	background-color: #3a3c9a;
	color: white;
	padding: 15px;
	text-align: center;
}
main {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
footer {
	text-align: center;
	padding: 10px;
	font-size: 14px;
	background: #eee;
}

/* =======================
   Кодовые вставки
   ======================= */
.path {
	font-size: 14px;
	background: #f0f0f0;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	user-select: none;
	position: relative;
	margin-left: -70px;
	overflow-x: auto;
	white-space: pre;
}

.to_copy {
	transition: background-color 0.3s;
}

.copied {
	font-weight: normal;
	background-color: #d4edda;
	border: 1px solid #28a745;
}

/* =======================
   Базовые стили
   ======================= */
code {
	font-weight: bold;
	font-size: 15px;
}
small {
	color: rgb(93, 93, 93);
}
* {
	-webkit-tap-highlight-color: transparent;
}
hr {
	border: none;
	height: 4px;
	background-color: #3a3c9a;
	width: 95%;
	margin: 20px auto;
}
img {
	margin: 0 auto;
	display: block;
	height: auto;
	width: 90%;
	border: 5px solid #3a3c9a;
	border-radius: 15px;
	box-sizing: border-box;
}
body {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

/* =======================
   Details блок
   ======================= */
summary {
	cursor: pointer;
	display: block;
	position: relative;
}
summary::-webkit-details-marker {
	display: none;
}
summary::marker {
	content: "";
}
details > summary::after {
	content: "";
	display: block;
	width: 100px;
	height: 30px;
	background-image: url('../images/open.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 4px;
	filter: hue-rotate(200deg) saturate(2);
}
details[open] > summary::after {
	background-image: url('../images/close.png');
}
details {
	display: block;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	background-clip: padding-box;
	padding: 5px;
	border: 2px solid transparent;
	border-radius: 8px;
	transition: border-color 0.5s ease;
	overflow: hidden;
}
details[open] {
	border-color: #3e2fa0;
	background: #e9e8ee;
}

/* =======================
   span эмодзи
   ======================= */
.star::before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url("../images/icon_big.ico") no-repeat center center;
	background-size: contain;
	color: transparent;
}