* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    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: auto 20px;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover {
    color: rgb(86,99,7);
}

.homebtn { 
    float: left;
    margin-top: -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;
}

/*

SIDEBAR

*/

.sidebar {
    height: 100%;
    left: 0;
    top: 50px;
    width: 300px;
    padding: 300px 0 0 30px;
    position: fixed;
    overflow-x: hidden;

}

.sidebar-category {
    color: black;
    text-decoration: none;
    display: block;
    font-size: 25px;
    padding: 5px 0 2px 0;
}

.sidebar-item {
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
    color: black;
}

/*

PARALLAX

*/

.parallax {
    background-image: linear-gradient(rgba(0, 0, 0, 0.603), rgba(0, 0, 0, 0.397)), url(DSC_0538.jpg);
    min-height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}

.parallax-text {
    font-size: 50px;
    text-align: center;
    width: 100%;
    color: white;
    padding: 100px 0;
}

/*

MAIN

*/

main {
    width: 60%;
    margin: 50px 20% 50px 20%;    
    
}

main h2 {
    text-align: center;
    font-size: 30px;
    padding: 10px 0;
}

/*

SECTION

*/

section {
    font-size: 20px;
    line-height: 1.2em;
    margin: 30px 0;
}

section img {
    width: 50%;
    padding: 20px ;
    display: inline-block;
}

section h3 {
    font-size: 25px;
    margin: 10px 0;
    padding-left: 5px;
    border-left: 10px solid rgb(0, 161, 22);
}

/*

FOOTER

*/

footer {
    text-align: center;
    
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.445);
    color: white;
}

footer a {
    color: white;
    
}