/*Master styles */
body{
    font-family:"Lato", sans-serif;
    margin: 0px;
}

.container{
    display: grid;
    grid-template-columns: 1fr;
}

/*header Box */
header{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.01)), url(images/contentBox.jpg);
    height: 100vh;
    background-position: center;
    background-size: cover;
}
.contentBox{
    position: absolute;
    width: 1140px;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);

}

.contentBox p{
    color: rgb(250, 250, 250,1);

}

h1{
    color: white;
}

.row{
max-width: 1140px;
margin: 0 auto;
text-transform: uppercase;
}

.mainNav{
    list-style: none;
    float: right;
    margin-top:60px ;
}

.mainNav li{
    display: inline-block;
    margin-left: 10px;
    }
    
.mainNav li a{
    color: white;
        text-decoration: none;
        font-size: 90%;
        
        /* 
        font-weight:bold;
        padding: 1px 0;
        */ 
    }

.mainNav li a:hover{
    color: rgb(150, 150, 150);
    border-bottom: 1px solid rgb(150, 150, 150);
    transition: all 0.5s ease-in;   
}
/*logo name*/
.logoName{
    list-style: none;
    
    margin-top:60px ;
    float: left;

    letter-spacing: 0.5rem;
    font-weight: 900;
    /*
    justify-content: space-between;

    position: absolute;
    justify-content: center;
    font-family: 'Dancing Script';
    */
}

.logoName li{
    display: block;
    /*margin-left: 100px;*/
    }
    
.logoName li a{
    color: white;
    font-size: 90%;
    text-decoration: none;  
    }
    
/*logo image*/

.logo img{
    height: 100px;
    float: left;
    margin-top: 10px;
}
/*Active Nav styles */

.activeNavLink{
    border-bottom: 1px rgb(150, 150, 150) /*solid*/;
}

.activeNavLink a{
    color: rgb(150, 150, 150) !important;
}

/* devider */
.deviderSection{
    height: 80px;
    background-image: linear-gradient(rgb(20, 20, 20),rgb(20, 20, 20))
}

.deviderTitle{
    list-style: none;
    margin-top:0px ;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;

    letter-spacing: 0.5rem;
    font-weight: 900;
}

.deviderTitle li{
    display: block;
    }
    
.deviderTitle li a{
    color: white;
    font-size: 90%;
    text-decoration: none;  
    text-transform: uppercase;
    }


/* Portfolio styles */
.portfolioItemsWrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.portfolioItemWrapper{
    position: relative;
}

.portfolioImgBackground{
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

 .imgTextWrapper{
     position: absolute;
     top: 0;

     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100%;
     text-align: center;

     padding-left: 100px;
     padding-right: 100px;
 }

 .logoWrapper img{
    width: 50%;
    margin-bottom: 20px;
    }

/* needs to be more specific with selector */

.imgTextWrapper .subtitle{
    transition: 1s;
    color: transparent;
    font-weight: 600;
}

.imgTextWrapper:hover .subtitle{
    font-weight: 600;
    color: lightseagreen;
}

.imgDarken {
    transition: 1s;
    filter: brightness(10%);
}

/* two Column Wrapper*/ 
.twoColumnWrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profileImageWrapper{
    width: 100%;
}
 
.profileContentWrapper{
    background-color: rgba(20, 20, 20, 1);
    color: rgb(250, 250, 250);
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    height: 100%;
    text-align: left;
}

.profileContentWrapper h1{
    color: lightseagreen;
}