header {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    box-shadow: 0 3px 10px black;

    a {
        text-decoration: none;
    }

    img {
        display: block;
    }

    .site-header__link {
        display: flex;
        align-items: center;
        gap: 5px;
        color: black;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        font-family: OldNewspaperTypes, serif;
        padding: 10px 25px;
        border: 5px double black;
        border-radius: 20px;

        svg,
        img {
            width: 30px;
        }

        &:hover {
            color: orange;
            border-color: orange;

            g {
                fill: orange;
            }
        }
    }
}