.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
     background-color: #262626;
    padding: 5px;
    position: sticky;
    text-align: center;
    border-radius: 50px;
    top: 0;
    z-index: 10;
}

.item1 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-logo {
    height:50px ;
}

.website-name {
     font-size: 25px;
    color: #FFFFFF;
    padding-left: 15px;
}

.item2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
}

.menu-item {
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 20px;
}

.item3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
}

.menu-item:hover {
   color:rgb(254 83 115);
}

.navbar-humburger-logo {
    height: 30px;
}


#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-right: 20px;
} 


/* Mobile Screen */

@media screen and (min-width: 300px) and (max-width: 768px) {
   
    .navbar-container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
        margin: 0;
        align-self: center;
    }

    .website-name {
     font-size: 20px;
    color: #FFFFFF;
    padding-left: 15px;
}

    .item2,
    .item3 {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
    }

    .menu-item {
        margin: 10px 0;
        font-size: 18px;
    }

    #menu-toggle:checked ~ .item2,
    #menu-toggle:checked ~ .item3 {
        display: flex;
    }
}