.header_container
{
    width : 100%;
    height : 70px;

    background-color : rgb(0, 51, 163);

    border-radius: 0px;
}

.header_main
{
    width : 100%;
    height : 100%;

    justify-content: space-between;
}

.header_logo
{
    height : 100%;
}

.header_logo img
{
    height : 70px;
    width : auto;

    fill : var(--header-logo-color);
}

.header_menu
{
    width : 100%;
    height : 100%;

    justify-content: flex-end;
}

.header_menu ul
{
    height : 100%;

    display : flex;
    align-items: center;
    justify-content: center;

    list-style-type: none;
}

.header_menu li
{
    height : 100%;

    display : flex;
    align-items: center;
    justify-content: center;

    padding-left : 10px;
    padding-right : 10px;
}

.header_menu li a
{
    color : white;

    font-size : 16px;
}

.header_menu li a:hover
{
    color : white;
    text-decoration : underline;
}