:root {
    font-family: Cascadia Code, Courier New, Courier, monospace;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light dark;
    color: #ffffffde;
    background-color: #161616;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #161616;
}

section > h1 {
    font-size: 2.5em; /* Уменьшено с 3em до 2.5em */
    line-height: 1.2; /* Чуть увеличен для читабельности */
}

.app {
    max-width: 1200px; /* Увеличено с 800px до 1200px */
    margin: 0 auto;   /* Центрирование по горизонтали */
    padding: 30px;    /* Увеличены отступы */
}

p {
    font-size: 1.5em; /* Уменьшено с 1.8em до 1.5em */
    line-height: 1.6;
    font-weight: bold;
}

li {
    font-size: 1.5em; /* Уменьшено с 1.8em до 1.5em */
    line-height: 1.6;
    font-weight: 500;
}

.par {
    color: #b3b3b3de;
    font-size: 1.5em; /* Уменьшено с 1.8em до 1.5em */
    line-height: 1.3; /* Чуть увеличен */
}

li {
    color: #b3b3b3de;
    font-size: 1.5em; /* Уменьшено с 1.8em до 1.5em */
    line-height: 1.3;
    font-weight: 700;
}

.hidden {
    display: none;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.notification.show {
    opacity: 1;
}

a {
    color: #4CAF50; /* Цвет ссылок */
    text-decoration: none; /* Убираем подчеркивание */
    transition: color 0.3s ease-in-out; /* Плавный переход цвета */
}

a:hover {
    color: #388E3C; /* Цвет ссылок при наведении */
    text-decoration: underline; /* Подчеркивание при наведении */
}

a:visited {
    color: #2E7D32; /* Цвет ссылок после посещения */
}
.footer-divider {
    border: 0;
    height: 1px;
    background: #7c7c7c;
    margin: 20px 0;
}