body {
    font-family: Arial, sans-serif;
    margin: 0;
    transition: margin-left .5s;
	background-image: url(https://spr1an.ru/images/backgroundcss.jpg); /* Путь к фоновому изображению */
    background-color: #710011; /* Цвет фона */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    font-family: arial;
    font-size: 14px;
	text-decoration: none;
    color: black;
	border-radius: 10px 10px 10px 10x;
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: auto;

}

a {
   text-decoration: none;
   color: #000000;
   display: block;
}
a:hover {
   color: #f1f1f1; 
}

.block1 { /* Центральный блок */ 
    top: 0;
    left: 0;
    width: auto; 
    background: #71001a;
    padding: 5px;
    border: solid 1px black;
	border-radius: 10px 10px 10px 10x;
	box-shadow: 0px -3px 8px black /* Верхняя граница */, -3px 3px 8px black /* Левая граница */, 3px 3px 8px black /* Правая граница */, 0px 8px 8px black /* Нижняя граница */;
   }
 

/* Стили меню */
.sidebar {
	box-shadow: 0px -1px 5px black /* Верхняя граница */, -1px 1px 5px black /* Левая граница */, 1px 1px 5px black /* Правая граница */, 0px 10px 5px black /* Нижняя граница */;
    height: 100%;
    width: 0; /* Скрыто по умолчанию */
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #71001a;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    /* padding: 8px 8px 8px 32px; */
    text-decoration: none;
    /* font-size: 25px;*/
    color: #000000;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Кнопка открытия */
.openbtn {
    font-size: 12px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 5px 10px;
}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

/* Адаптивность для мобильных устройств */
@media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
}