body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f3f0; /* Нежный пастельный фисташковый фон */
    font-size: 1em;
    line-height: 1.3em;
}

header {
    text-align: center;
    margin: 100px 0;
}

main {
    max-width: 700px;
    margin: auto;
}

#logo {
    width: 35vw; /* 50% от видимой части экрана */
    max-width: 250px;
}

#tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tabcontent {
    display: none;
    padding: 20px;
}

.tablink {
    background-color: #357D00; /* Зеленый цвет для неактивных кнопок */
    color: white;
    outline: none;
    cursor: pointer;
    padding: 10px 16px;
    font-size: 1em;
    transition: background-color 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    margin: 0 5px;
}

.tablink:hover {
    background-color: #666;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.tablink.active {
    background-color: #ccc; /* Оранжевый цвет для активной кнопки */
    color: white;
    box-shadow: none;
}

.footer {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9em;
}

.footer a {
    color: inherit; /* Цвет текста как у остального текста */
    text-decoration: none; /* Убрать подчеркивание */
}

.footer a:hover {
    text-decoration: underline; /* Добавить подчеркивание при наведении */
}