.header {
    overflow: hidden;
    background-color: #333;
    padding: 12px;
}

.header-content {
    padding-left: 2.5%;
    padding-right: 2.5%;
}

.nav-logo {
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
}

.nav-item {
    float: left;
    color: rgba(255, 255, 255, .55);
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.nav-item:hover {
    background-color: #ddd;
    color: black;
}

.nav-item.active {
    color: white;
}

.nav-links {
    float: right;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    list-style: none;
}

.nav-title {
    position: absolute;
    display: inline-block;
    color: white;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 500px) {
    .nav-item {
        float: none;
        display: block;
        text-align: left;
    }

    .nav-links {
        float: none;
    }
}