/* Master Styles*/
body{
    margin: 0px;
    background:white;
}

.container {
    display:grid;
    grid-template-columns: 1fr;
}

.nav-wrapper{
  display: flex;
  justify-content: space-between;
  padding: 38px;


}

.left-side{
    margin-right:20px;

}

.nav-wrapper > .left-side >div{
    margin-right: 20px;
    font-size: 0.9em;
    text-transform: uppercase;

}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
    margin-top: 50px;
    font-size: 30px;
}

.nav-link-wrapper a {
   color: #8a8a8a;
   text-decoration: none;
   transition: color 0.5s;

}

.nav-link-wrapper:hover{
    border-bottom:1px solid rgb(252, 252, 252);

}
.nav-link-wrapper a:hover{
    color: rgb(252, 252, 252);
}

/* portfolio style */
.portfolio-items-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.portfolio-item-wrapper{
    position:relative;

}
.portfolio-img-background{
    height: 300px;
    width: 100%;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}
.img-darken{
    transition:1s;
    filter:brightness(10%);
}

.two-column-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profile-image-wrapper  img{
    width: 100%;
}

.profile-content-wrapper{
    padding: 30px;
    
}

.profile-content-wrapper h1{
    color: white;}

