body{
    margin: 0;
}

/* 
Dark green - #173e35
Dark green accent - #006b5c
Black/Dark grey - #2e2e2e
Light green - #7d9c91
Lightest green - #aec9b9
*/

.wrapper{
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
    transition: 1s ease-in-out;
}
.background-pictures{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
}
.above, .wave-middle, .wave-front, .wave-back{
    position: absolute;
    height: 100%;
    width: 100vw;
    z-index: -1;
}

.above{
    transform: translateZ(-10px) scale(2);
}
/* middle */
.wave-middle{
    transform: translateZ(3px) scale(1.5);
    width: 78%;
    height: 50%;
    bottom: 0;
    top:65vh;
}
/* front */
.wave-front{
    transform: translateZ(6px) scale(1.5);
    width: 78%;
    height: 55%;
    bottom: 0;
    left: 0;
    top:65vh;
}
/* In the back */
.wave-back{
    transform: translateZ(-2px) scale(2);
    width: 78%;
    height: 50%;
    bottom: 0;
    right: 0;
    top:65vh;
}
/* Change height for bottom of the page */
.below{
    position: absolute;
    height: 120%;
    width: 100vw;
    top: 100vh;

}

/* Above content */

/* .content-wrapper{} */

.title{
    font-size: 7rem;
    color: white;
    text-shadow: 0 0 5px black;

}

.slogan{
    transform-style: preserve-3d;
    font-size: 2rem;
    padding: 2rem;
    background-color: rgba(46, 46, 46, .5);
    border-radius: 10px;
    color: white;
    text-align: center;
}
/*  */

/* change margin from 200 to a higher number and then change height in below-content-container */

.below-content{
    position: absolute;
    font-size: 1rem;
    padding: 2rem;
    background-color: 	rgba(23, 62, 53, .5);
    color: white;
    margin: 240vh 10vw 0 10vw;
    border: 3px solid rgba(0, 107, 92, .5);
    border-radius: 20px;
    width: 80%;
}

.below-content .title{
    font-size: 3rem;
    font-stretch: expanded;
    letter-spacing: .25em;
    text-align: center;
    margin:0;
    padding: 10px;
}

/* Nav */

.below-content-nav{
    display: flex;
    justify-content: space-around;

    border-radius: 20px;
    background: none;
    box-shadow: none;
    margin: 1vh 0 0 0;
}
.nav-btn{
    list-style: none;
    text-decoration: none;
    color: inherit;
    background-color: #7d9c91;
    cursor: pointer;
    display: flex;
    justify-content: center;
    border: 3px solid #173e35;
    align-items: center;
    padding: 1em 2em;
    height: 2.5vh;
    width: 5vw;
    font-size: 1.5rem;
    text-align: center;
}

button{
    background-color: #7d9c91;
}

.below-content-nav button:hover{
    background-color: 	#aec9b9;
}

/* ^Nav^ */

.below-content-container{
    position: relative;
    margin-top: 1vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    padding: 10px;
    /* background-color: 	#2e2e2e; hidden behind .below-content-item */
    border-radius: 20px;
}
.below-content-item{
    position: absolute;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: 	#2e2e2e;
    opacity: 0;
    z-index: -1;
    transition: 1s;
    overflow-x: hidden;
}

/* ABOUT PAGE */

.below-content-about{
    width: 100%;
    height: 100%;
}

.about-title{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 50px;
}

.about-title p {
    padding: 0 auto;
}

.about-title img{
    width: 10em;
    height: 10em;
    border-radius: 20%;
}

/* .about-title h1{
    make it looks smart   
} */

p{
    font-size: 1.5rem;
}
h1{
    text-decoration: underline;
}
/* .about-content{
    margin: 0 auto;
} */

/* PROJECTS PAGE */

.below-container-projects{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* [ - project selector - ]*/

.below-content-project-selector{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: inherit;
    height: 10vh;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: #2e2e2e;
    border: 3px solid #7d9c91;
    padding: 1em;
}

/* .below-content-project-selector button{
    
} */

.project-selector-item{
    /* height: 5vh;
    width: 5vw;
    margin: 1.5em;
    cursor: pointer; */

    list-style: none;
    text-decoration: none;
    color: inherit;
    background-color: #173e35;
    border: 3px solid #006b5c;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5em;
    margin: 1em .5em;
    height: 2.5vh;
    width: 5vw;
    font-size: 1.5rem;
    text-align: center;

}

.project-selector-item:hover{
    box-shadow: 0 0 5px 5px #bbb;

}

.project-content{
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

}

.project-selected{
    position: absolute;
    opacity: 0;
    z-index: -1;
    transition: .5s ease-in-out;
    width: 100%;
    height: 100%;
    margin: 0;
    
    overflow-y: auto;
}

.project-selected p {
    padding: 0 2.5vw;
}

.project-selected h1{
    text-align: center;
}


/* CONTACT PAGE */

.contact-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}



/* active classes */

.active{
    opacity: 1;
    z-index: 1;
}

.active-btn{
    box-shadow: 0 0 5px 5px #bbb;
    background-color: 	#aec9b9;
}

/* Scroll bar */

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  @media(max-width: 800px){
    .title{
        font-size: 3.5rem;
        text-align: center;
    }
    .nav-btn{
        font-size: 1.2rem;
    }
    .below-content-nav{
        background: none;
        box-shadow: none;
    }
    p{
        font-size: .7rem ;
    }
    .below-content-item{
        width: 100vw;
    }
    .below-content{
        background: none;
        border: none;
    }
    
  }