/*navbar*/

.container{
    background-color: darkslategray;
}
.nav-wrapper{
    display: flex;
    justify-content: space-between;
}
.left-side{
    display: flex;
    margin: 20px;
}
.nav-link-wrapper{
    margin-right: 20px;
    height: 20px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s;
}
.nav-link-wrapper a{
    color:floralwhite;
    text-decoration: none;
    font-size: 1.1em;
}
.nav-link-wrapper:hover{
    border-bottom: 2px solid floralwhite;
}
img{
    width: 90px;
    height: 60px;
    margin-top: 4px;
    margin-right: 4px;
}

/*footer*/

.footer{
    height: 30px;
    background-color: darkslategray;
   position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/*main page*/
.background{
    position: relative;
}
.back-img{
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.content{
    position: absolute;
    background-color: white;
    justify-content: center;
    align-items: center;
    top: 10%;
    text-align: center;
    width: 80%;
    height: 1/(5vw);
    display: flex;
    flex-direction: column;
    z-index: 5;
    left: 10%;
    right: 10%;
}
#description{
    top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2.5vw;
    font-family: 'Times New Roman', Times, serif;
    text-align:center;
}
.quote{
    padding: 30px;
    font-size: 2.5vw;
    font-family: 'Times New Roman', Times, serif;
    color:lightslategrey;
}

/*contact page*/

.contact-title p{
    font-size: 2em;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: dimgray;
    margin: 20px;
}
.table{
    border-top: solid darkslategray 1px;
    border-bottom: solid darkslategray 1px;
}
.email{
    color: dimgray;
}
.resources-link{
    text-align: center;
    font-size: 1.5em;
    height: 150px;
    width: 33.33%;
    background-color: darkslategrey;
    text-decoration: none;
    color: white;
}
.credit{
    height: 70px;
    bottom: 0;
    margin-left: 10px;
    position: fixed;
    color: lightslategrey;  
}

/*planning page*/

.planning-page{
    display: flex;
    padding-top: 20px;
    padding-left: 20px;
}
.side-bar{
    min-width: 200px;
    width: 25%;
    height: 80vh;
    background-color: gray;
}
.display-link a{
    font-size: 1.75vw;
    color: black;
    text-decoration: transparent;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.display-link{
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 5vw;
    margin-top: 2.5vw;
    height: 3.5vw;
    border-top: 2px solid black;
}
.display-link a:hover {
    color: blanchedalmond;
    transition: 0.5s;
}
.display{
    width: 80%;
    display: flex;
    margin: 5%;
}
.voices-pic img{
    position: relative;
    margin-left: 10%;
    margin-top: 5%;
    height: 40vh;
    width: 80%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.voices-container{
    position: relative;
    background-color: blanchedalmond;
    width: 65vw;
    height: 70vh;
    margin: 0%;
}
.planning-descriptor{
    font-size: 1.25vw;
    margin: 20px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

/*inuit voices*/

.picture img{
    height: 60vw;
    width: 95%;
    margin: 0px;
    margin-right: 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.words{
    background-color: blanchedalmond;
    height: 55vw;
    width: 70%;
    padding-top: 5%;
    padding-left: 5%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.3em;
}
.voices-desc a{
    text-decoration: none;
    margin-left: 0%;
    margin-top: 80%;
    font-size: 1.75vw;
    color: black;
}
.voices-desc a:hover{
    border-bottom: 2px solid black;
    transition: 0.1s;
}    
.voices-para{
    font-size: 1.5vw;
    padding-right: 10px;
}

/*project page*/

.project-items{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.Project-item{
    position: relative;
}
.img-background{
    height: 45vh;
    width: 50vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.wrapper{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    width: 20vw;
    left: 30%;
    margin-left: - 50px;
}
.logo img{
    height: 100%;
    width: 10vw;
    margin-bottom: 20px;
}
.wrapper .subtitle a{
    transition: 1s;
    color: transparent;
    font-weight: 500;
    text-decoration: none;
}
.wrapper:hover .subtitle a{
    font-weight: 300;
    color: cadetblue;
    text-decoration: none;
    font-size: 1.5vw;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.background-image-darken{
    transition: 1s;
    filter: brightness(20%);
}
.bottom-bar{
    height: 20px;
    width: 100%;
    margin: 0px;
    color: black;
}
body{
    margin: 0px;
}