.header_full {
    display: none;
}

.header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid white;
    width: 100%;
    height: 10vh;
}

@media screen and (min-width: 950px) {

    .header{
        display: none;
    }

    .header_full {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid white;
        width: 100%;
        height: 10vh;
        padding-left: 2rem;
    }

    a{
        text-decoration: none;
        color: #fff;
    }

    .links_area {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
    }

    .links_area span {
        margin: 5px 15px;
        width: inherit;
        background-color: transparent;
        border: inherit;
        border-radius: inherit;
        font-weight: 600;
        text-align: left;
        padding: 6px;
        cursor: pointer
    }

    .links_area span a:hover{
        color: #fecf07;
    }

    .links_area span:hover{
        color: #fecf07;
    }

}