.navbar-niceso{
    height: 70px;
    width: 100%;
    background: linear-gradient(90deg, rgb(255, 182, 182), red);
    font-size: 12pt;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    position: relative;
}
.navbar-niceso ul{
    padding: 0;
    margin: 0 auto;
    height: 70px;
}
.navbar-niceso li{
    display: inline;
    float: left;
}
.navbar-niceso li img{
    margin-top: 5px;
    width: 60px;
    height: auto;
}
.navbar-niceso a{
    color: #ffffff;
    display: inline-block;
    width: 100px;
    text-align: center;
    text-decoration: none;
    line-height: 70px;
}
.navbar-niceso a:hover, .navbar-niceso a:active{
    background-color: darkred;
    color: white;
}
.navbar-niceso a#pull{
    display: none;
}
/* membuat responsive ketika diperkecil*/
@media screen and (max-width: 600px){
    .navbar-niceso{
        height: auto;
        border-bottom: 0;
        background: linear-gradient(90deg, rgb(255, 182, 182), red);
    }
    .navbar-niceso ul{
        width: 100%;
        display: none;
        height: auto;
    }
    .navbar-niceso li{
        width: 100%;
        float: none;
        display: block;
        background: #ffffff;
    }
    .navbar-niceso li a{
        border-bottom: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
    }
    .navbar-niceso a{
        text-align: left;
        width: 100%;
        text-indent: 25px;
        color: #333333;
    }
    .navbar-niceso a#pull{
        display: block;
        background: linear-gradient(90deg, rgb(255, 182, 182), red);
        width: 100%;
        position: relative;
        color: #ffffff;
    }
    .navbar-niceso a#pull:after{
        content:"";
        background-color: blue;
        width: 40px;
        height: 40px;
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 10px;
    }
}