* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("./nezamyslice.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    line-height: 1,7;
    height: 90vh;
    font-family: 'Montserrat', sans-serif;
}

/*

NAV

*/

nav {
    padding: 20px 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.521);
    text-transform: uppercase;
}

nav ul {
    text-align: center;
    
}

nav li {
    display: inline;
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover {
    color: rgb(86,99,7);
}

.homebtn { 
    float: left;
    margin-bottom: 5px;
}

/* Dropdown menu */

li.dropdown {
    display: inline-block;
  }

.dropdown-content {
    z-index: 1;
    display: none;
    position: absolute;
    background-color: rgb(255, 255, 255);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    
}

.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 13px 15px;
}
.dropdown-content a:hover {
    background-color: rgb(214, 214, 214);
}

.dropdown:hover .dropdown-content {
    display:block;
}

/*

HEADER

*/

header {
    text-align: center;
    color: white;
    width: 100%;
    
}

header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 4em;
}

header h2 {
    color: white;
    font-size: 1.1em;
    font-weight: 100;
}

.button {
    background-color: rgb(0, 0, 0);
    border: 2px solid none;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 10px;
}

.button:hover {
    border: 2px solid black;
    background-color: transparent;
    color: rgb(0, 0, 0);
    transition: 0.1s;
    
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.445);
    padding: 10px 0;
    margin: 50px 0;
    
}

/*

FOOTER

*/

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.445);
    color: white;
}

footer a {
    color: white;
    
}