body {
    background-image: url(imej/bg4.png);
    background-size: cover;
    background-attachment: fixed;
    margin: 0px;
}



nav {
    margin-top: 20px;
    top: 140px;
    width: 100%;
    height: 60px;
    padding: 0px;


background-color: #960063;
    display: flex;
    align-items: center;
    justify-content: center;
}

main.menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

figure {
    margin: 20px 0px 0px 0px;
}

figcaption {
    font-family: verdana;
    font-size: 13px;
    padding: 1px;
    text-align: center;
    background-color: white;
}

img.home {
    border: 2px solid red;
    width: 300px;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

ul li {
    display: block;
    float: left;
}

li ul {
    display: none;
}

ul li a {
    font-family: verdana;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
    color: white;
    text-decoration: none;

    width: 180px;
    padding: 8px 10px;
    border-radius: 15px;
 
    margin: 4px 15px 4px 0px;
    display: block;
}

ul li a:hover {
    color: black;
    background-color: silver;
}

li:hover ul {
    display: block;
    position: absolute;
}

li:hover li {
    float: none;
}