header {
    width: 100%;
    background-color: #d1d3ff;
}

.bars {
    display: none;
}

.bars .fa-bars {
    font-size: 30px;
    color: white;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

header ul li {
    padding: 15px;
    text-transform: uppercase;
    border-right: 1px solid #e0e0e0;
}

header ul li:last-child {
    border-right: 0;
}

header ul li a {
    text-decoration: none;
    color: black;
    font-weight: 700;
    font-size: 14px;
}

.logo-brand-center {
    background-color: #d3e2d0;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.logo-center {
    display: flex;
    justify-content: center;
}

.logo-text {
    text-align: center;
}

.logo-text h1,
.logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.logo-text h1 {
    color: black;
    font-weight: bold;
    font-size: 62px;
}

.logo-text h2 {
    color: #767676;
    margin: 30px 0 0;
    font-size: 18px;
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    header {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #1c1c1c;
        padding: 15px 0;
    }

    .bars {
        display: block;
    }

    header ul {
        display: none;
    }
}

@media screen and (max-width: 601px) {
    .logo-text h1 {
        font-size: 42px;
    }

    .logo-text h2 {
        font-size: 16px;
    }
}