.nav {
    background-color: rgba(224, 0, 0, 0.85);
    list-style-type: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow: hidden;
    margin: 0;
    padding: 0;
    float: left;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
    width: 100%;
    height: fit-content;
    font-size: 15px;
    color: whitesmoke;
    position: fixed;
    display: flex;
    float: left;
}

.nav ul  {
    color: whitesmoke;
    background-color: none;
    text-transform: uppercase;
    font-weight: bold;
}

.nav ul li {
    display: inline;
    padding: 20px 15px;
    font-weight: bold;
}

.nav ul li ul {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.nav ul li ul li {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.nav ul li:hover ul {
    display: block;
}

a {
    color: rgb(126, 0, 0);
    background-color: none;
    text-transform: uppercase;
    text-decoration: none;
}

.nav ul li:hover {
    background-color: rgba(126, 0, 0, 0.7);
    color: rgb(255, 255, 255);
}

.nav ul li a:hover {
    color: rgb(255, 255, 255);
}


/*
<!--menutop menu pomocí nav ul li-->
<div class="nav">
    <ul>
      <!--FORMÁTOVÁNÍ JAKO LINK V OBJEKTU AKTIVOVANÝ KLIKNUTÍM OTEVŘENÝ VE STEJNÉM OKNĚ-->
      <li onclick="location.href='https://infoskop.cz/';">Domů</li>
      <!--FORMÁTOVÁNÍ JAKO LINK V OBJEKTU AKTIVOVANÝ KLIKNUTÍM OTEVŘENÝ V NOVÉ ZÁLOŽCE-->
      <li onclick="window.open('https://infoskop.cz/')">Kultura, Zábava, Akce</li>
      <li>Akce a události Nevojice</li>
    </ul>
  </div>

*/