
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }.menu{
    background-color:aquamarine ;
    list-style: none;
    min-height: 30px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-radius: 5px;
    list-style-type: none;
}
.menu li{
    line-height: 30px;
    margin-left: 30px;
}
.menu li a{
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.menu li a:hover{
    color: blue;
    background-color: #ffd700;
}
.menu1{
    background-color: aquamarine;
    list-style: none;
    padding: 0;
    width: 250px;
    font-style: bold;
}
.menu1 li{
    line-height: 30px;
    height: 40px;
    border-bottom: solid white;
}
.menu1 li a{
    text-decoration:none;
}
.menu1 li a:hover{
    color: yellowgreen;
}