body {
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 5px;
    position: relative;
    white-space: nowrap;
}
.navbar img {
    height: 50px;
    margin-right: 20px;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
}
.navbar a:hover {
    background-color: #575757;
}
.hamburger-menu {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.menu-items {
    display: flex;
    flex-direction: row;
}
.menu-items a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
}

@media screen and (max-width: 950px) {
    .hamburger-menu {
        display: block;
    }
    .menu-items {
        /* display: none; */
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        display: none;
    }
    .menu-items.show {
        display: flex;
    }
    .menu-items a {
        padding: 10px;
        border-top: 1px solid #575757;
    }
}

