*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.sidebar{
    width: 300px;
    height: 93vh;
    padding-top: 5px;
    background-color: orange;
    padding: 20px;
    display: none;

}
.ham-item{
    margin: 10px;
    margin-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;


}
.iconic{
    display: none;
}
.ba{
    font-size: 36px;
    position: absolute;
    cursor: pointer;
}
.ul-head{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: auto;
    
    }
.header{
    padding: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: orange;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.logo{
font-family: cursive;
}
@media only screen and (max-width:768px) {
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ham-item{
    margin: 10px;
    margin-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;


}
.sidebar{
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0px;
    height: 93vh;
    padding-top: 5px;
    background-color: orange;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
  

}
.iconic{
    display: inline;
}
.ba{
    font-size: 36px;
    position: absolute;
    right: 30px;
    top: 20px;
    cursor: pointer;
}
.ul-head{
    list-style: none;
    display: none;
    gap: 20px;
    margin: auto;
    
    }
.header{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    background-color: orange;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.logo{
font-family: cursive;
}
    
}