body {
    font-family: 'Roboto', sans-serif; /* Подключите шрифт, который вам нравится */
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
}

#content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #333;
    color: #b50000;
}

ul {
    list-style-type: disc; /* Или используйте другой стиль */
    padding-left: 20px;
}

.tab {
    display: none; /* Скрываем табы по умолчанию */
}

.tab-label {
    display: inline-block;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px;
}

.tab-label:hover {
    background-color: #0056b3;
}

.tab-content {
    display: none; /* Скрываем содержимое табов по умолчанию */
}

.tab:checked + .tab-label {
    background-color: #0056b3; /* Цвет выбранного таба */
}

.tab:checked + .tab-label + .tab-content {
    display: block; /* Показываем содержимое выбранного таба */
}

