body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #e6f7ff;
    color: #333;
    line-height: 1.6;
}

header {
    backdrop-filter: blur(10px);
    padding: 1rem;
}

h1{
	text-align:center ;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #505050;
}



#toggleSidebar {
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.container {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 1fr;
    height: calc(100vh - 50px);
    margin-top: 50px;
}


#sidebar {
    background-color: #333;
    color: #eee;
    padding: 1rem;
    overflow-y: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar li a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #eee;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}


#sidebar li a:hover {
    background-color: #444;
}

#sidebar li a.active {
  background-color: #555;
  font-weight: bold;
}

#main-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

main a{
	color: black;
    text-decoration: none;
    font-weight: bold;
}


section {
    margin-bottom: 2rem;
}

h2 {
    text-align:center ;
	font-size: 30px;
}

ul, ol {
    list-style-type: disc;
    padding-left: 20px;
}

.logo {
    font-size: 24px;
    transform: translateY(-500%);
    animation: slideDown 1.5s forwards;
	transition: color 0.3s ease;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
	color: black;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    border: 1px solid #555;
    padding: 1rem;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
	transition: transform 0.4s;
}

.service img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.service:hover {
    transform: scale(1.05);
}

.social {
    display: flex;
    justify-content: right;
    gap: 15px;
    margin-top: 14px;
	margin-right: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #eee;
    text-decoration: none;
    font-weight: bold;
}

.social-link img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

footer {
    background-color: #333;
    padding: 0.1rem;
    text-align: center;
}

ul, li {
	list-style: none; 
}

.content-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* Контейнер для информации о сервере */
.server-info {
    max-width: 900px; /* Максимальная ширина блока */
    margin: 0 auto; /* Центрирование по горизонтали */
    padding: 20px; /* Внутренние отступы */
    text-align: left; /* Текст внутри выравнивается по левому краю */
}

/* Стили для заголовков внутри контейнера */
.server-info h2 {
    text-align: left; /* Выравнивание по левому краю */
    margin: 10px 0; /* Отступы между строками */
    font-size: 20px;
}

.commands-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
