<div class="container flex">
            <h1 class="logo">Ch.</h1>
            <nav class="nav">
                <ul class="nav__list flex">
                    <li class="nav__list-item">About</li>
                    <li class="nav__list-item">Works</li>
                    <li class="nav__list-item mr-0">Contacts</li>

                </ul>
            </nav>
        </div>
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background-color: var(--background-color);
    color: var(--logo-color);
    height: 100px;
    border-bottom: 2px var(--light-color) solid;
}

.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    font-weight: 400;
    font-style: italic;
    font-size: 24px;
}

.nav__list-item {
    width: 70px;
    height: 30px;
    margin: 0 30px;
    cursor: pointer;
    transition: all;
}
.nav__list-item:last-child {
    margin-right: 0;
}

.logo {
    font-family: 'Coiny', cursive;
    font-size: 64px;
}

/* HOVER */

.nav__list-item:hover {

    font-family: 'Coiny', cursive;
}

/* UTILS */

.flex {
    display: flex;
    justify-content: space-between;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.