header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 0 25px;
    background-color: var(--header-background);
    border: 4px solid var(--header-borders);
    z-index: 1;
    
    #header {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    a {
        img {
            height: 75px;
            margin-right: 25px;
        }

        font-size: 20px;
        padding: 5px 25px 5px 0;
        text-decoration: none;
        font-family: 'Open Sans';
        color: var(--header-button-default);

    } a:hover {
        color: var(--header-button-hover);
    }

    button {
        display: none;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        outline: none;
        border-radius: 10px;
        border: 0;

        cursor: pointer;
        background-color: var(--header-button-default);
        color: var(--section-screenshots-article);
        font-size: 20px;
    } button:hover {
        background-color: var(--header-button-hover);
        color: var(--text-primary);
    }
}