html, body{
    margin: 0;
    padding: 0;
    background-color: #FFF;
    font-family: "Roboto", sans-serif;
}

header {
    background-color: #4f899d;
    color: #fff;
}
nav{
    display: flex;
    border-bottom: 3px solid #fff;
}
nav ul {
    list-style: none;
    margin: 0 auto;
    width: max-content;
    padding: 0;
    text-align: center;
}

nav li {
    margin: 20px 20px 20px 20px;
    width: 144px;
}

nav a {
    text-decoration: none;
    color: #fff;
    display: inline-table;
    height: 24px;
}
nav a:hover {
    transition: 0.5s;
    background: #205781;
}
#otevreno{
    background: #205781;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #4f899d;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 100;
  border-top: 3px solid #808080;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  transition: 0.5s;
  background: #205781;
}


.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropa {background: #205781;}
.dropdown-content:hover {display: block;}
/*******************************************************************   MAIN    ************/
main{
    max-width: 1000px;
    margin: auto;
    min-height: calc(100vh - 100px);
    padding: 10px;
}

h1{
    color: #205781;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}




.hider {
    z-index: 1000;
    height: 61px;
    transform: translateY(-80px);
    background-color: #ffffff;
    position: absolute;
    width: 100%;
    left: 0;
}





footer{
    background: #5386a2;
    height: 40px;
    color: #fFF;
    margin-top: 20px;
}

footer p{
    text-align: center;
    margin: 0;
    padding-top: 10px;
}

footer a{
    color: #fff;
}