.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #c7a462ff;
    color: white;
    height: 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 3rem;
    height: auto;
    filter: none;
    margin-left: 1rem;
}

.navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 1rem;
}

.navigation li {
    margin-left: 1rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}