
nav {
    position: fixed;
    display: flex;
    width: 100%;
    height: 60px;
    background: #031224;
    justify-content: start;
    #border-bottom: 1px solid #F1F3F2;
    color: #F1F3F2;
    text-transform: uppercase;
    z-index: 30000;

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

.header-content-container {
    display: flex;
    width: 60%;
    box-sizing: border-box;
    margin-left: 16px;
    align-items: center;
}

.header-content-item-container {
    height: 100%;
    display: inline-flex;
    position: relative;
    font-weight: bold;

    a {
        height: 100%;
        padding: 0 15px 0 15px;
        align-content: center;
        cursor: pointer;
    }
}

.header-content-item-container:hover {
    background: #051D3B;
    border-radius: 10px;
}
