*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-image: url(./Images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
a{
    color: aliceblue;
    text-decoration: none;
}
header{
    display: flex;
    padding: 0px 20px;
    justify-content: space-between;
    background-color: rgb(12, 9, 227);
    align-items: center;
}
header .logo{
    width: 30%;
    text-transform: uppercase ;
    font-weight: bold;
    color: aliceblue;
}
header .menu{
    display: flex;
    list-style: none;
}
header ul.menu>li{
    padding: 12px 20px;
    border-right: 1px solid white;
    /* position: relative; */
}
header ul.menu>li:last-child{
    border: none;
}
header ul.menu>li:hover{
    background: burlywood;
}
.menu-cap2{
    position: absolute;
    background-color: rgb(9, 5, 109);
    list-style: none;
    margin-top: 13px;
    margin-left: -20px;
    width: 150px;
    display: none;
}
.menu-cap2 li{
    padding: 10px;
    border-bottom: 1px solid white;
}
.menu-cap2 li:last-child{
    border: none;
}
ul.menu>li:hover .menu-cap2{
    display: block;
}
.menu-cap2 li:hover{
    background-color: blueviolet;
}