*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;  
    font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
}

body{
    overflow-x: hidden;
    overflow-y: hidden;
    
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background-color:#f8f8f8; 
}



.logo{  
    color: rgb(0, 121,60);
    margin-left: 3%;
    letter-spacing: 1px;
    font-size: 20px;
}

.OvoPv{
    position: absolute;
    top: 0px;
    width: 30vh;
}



.nav-links{
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    height: 92vh;
    right: 0px;
    top: 10vh;
    width: 30%;
    
    background-color: rgb(248,248,248,1);
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    
}

.nav-active{
    transform: translateX(0%);
}

/* .nav-links li:hover{
    background-color: rgb(0, 121,60, 0.7);
} */

.nav-links li{
    list-style: none;   
    opacity: 0;
    /* background-color: blue; */
    
} 

.nav-links a{
    color: green;      
    /* background-color: rgb(248,248,248,0.7); */
    text-decoration: none;    
    font-size: 20px;
}
.nav-links a:hover{
    color: rgb(255, 255,255, 0); 
    text-shadow: 1px 1px 0px rgb(0, 121,60);
}

.burger{
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: rgb(0, 121,60, 0.8);
    margin: 5px;
    margin-right: 40px;
    transition: all 0.3s ease;
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

.intro-header {
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
    color: #f8f8f8;
    background: url(../img/20190724_154242.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.intro-message {
    /* position: relative; */
    padding-top: 30%;
    padding-bottom: 30%;
}

.intro-message h1 { 
    margin-top: 120px;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    font-size: 4em;
}

.intro-divider{
    width: 600px;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    
}

.intro-message h3{
    font-size: 1em;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
}