/* Стили для информационных блоков */

body {
	background: #040505;
	background: linear-gradient(181deg, rgba(4, 5, 5, 1) 0%, rgba(60, 105, 81, 1) 100%, rgba(74, 67, 9, 1) 13%);
	font-family: Times New Roman, cursive;
	font-size: 16px;
	color: White;
}

.information {
	width: 100%;
	display: block;
	background: #212121;
	color: White;
	padding: 10px;
	margin-bottom: 2px;
	border: 2px solid Black;
	border-radius: 10px;
	overflow: auto;
}

.information img {
	width: 80%;
	height: 50%;
}

.information p {
	text-align: justify;
	text-indent: 50px;
}


.information h1, h2, h3 {
	text-align: center;
}

.information ul li {
	display: block;
	padding: 5px;
	list-style: none;
}

.information ul li::before {
	content: '📝: ';
}

/* Стили для панели, в котором есть функционал для различного вида API */

.list {
	width: 100%;
}

.list li {
	display: block;
	list-style: none;
}

.list li.cyan {
	padding: 8px;
	text-align: center;
	color: White;
	background: #0d6efd;
}

.list li a {
	display: block;
	padding: 6px;
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid Black;
	border-left: 1px solid Black;
	border-right: 1px solid Black;
}