@charset "utf-8";

.menu1 {
    background-color: aquamarine;
    list-style: none;
    min-height: 30px;
    width: 500px;
    display: flex;
}

.menu1 li {
    line-height: 30px;
    margin-left: 30px;
}

.menu1 li a {
    text-decoration: none;
}

.menu1 li:hover {
    background-color:orange;
    font-weight: bold;
    border-radius: 5px;
}

.menu1 li a:hover {
    color: aliceblue;
}

.menu2 {
    background-color:rgb(45, 135, 209);
    list-style: none;
    width: 250px;
    padding: 0;
}

.menu2 li {
    line-height: 30px;
    height: 40px;
    border-bottom: solid;
    border-color: white;
    border-width: 2px;
}

.menu2 li a {
    text-decoration: none;
}

.menu2 li:hover {
    background-color:dodgerblue;
    filter: brightness(130%);
    font-style: italic;
}