header {
    height: 125px;
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-logo {
    max-width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    padding: 10px 15px;
    background-color: #fad69d;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #fb9a00;
    text-decoration: none;
    color: #0700ff; /* Текст меняется на синий */
}

footer {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-top: 30px;
}
