body,
html {
    height: 100%;
		}
.parallax {
    background-image: url(https://images.unsplash.com/photo-1563995070609-e87d81ad33e2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
    height: 100%;
    width: 100;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'icomoon';
    font-weight: normal;
    font-style: normal;
    z-index: 2;
}
* {
    margin: 0;
    border: 0;
    padding: 0;
    z-index: 1;
}

.parallax-inner {
    padding-top: 14%;
}

.navbar {
    display:flex;
    background: rgba(0,177,39, 60%);
    position: fixed;
    top: 0;
    width: 100%;
  	height: 6%;
    font-family: 'Raleway';
    font-size: auto;
    z-index: 99;
  	align-items: center;
 	  justify-content: center;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;
    font-family: 'Raleway';
  	transition: top 0.3s; 
}

.navbar a:hover {
    background: rgba(0,177,39);
}

.left{ float: left;
}

.right{ float: right;
}

.logo
{ 
  overflow:;
 	padding-top: 143px;
  transform:translate(-15px)
}
.navbarOuter
{
  background: green;
  overflow:hidden;
  height:auto;
}


.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 22px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(0,177,39);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}