/* Master styles*/
body{
    margin: 0px;
    font-family: "lato", Arial, Helvetica, sans-serif;
}

p { margin-top: 66px;color: #061b5c;background-color: #ebedf3;
}

P::first-letter {
    font-weight: bold;color: red;font-size: 40px;
}
.emphasis {
    background-color:whitesmoke;
    display: inline;
}
.container {
    display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2px;
    background:#061b5c;
    
           
}


/*Nav styles*/
.nav-wrapper {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
    position: fixed;
    float: none;
    background-color: black;
    top:0;
    width: 97%;
    
}

.left-side {
    display: flex;
    font-size:x-large;
    font-weight: 600;
    color: white;
}

.right-side {
    display: flex;
    font-size: x-large;
    font-weight: 800;
  color: white;
}


.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;
}
.nav-link-wrapper a {
    color: #c4bdbd;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom:red;

}

.nav-link-wrapper a:hover {
    color: red;
}
.active-nav-link {
    border-bottom: 1px solid whitesmoke;
}

.active-nav-link a {
    color: white !important;
}

/* Portfolio styles*/
.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
  
.portfolio-item-wrapper {
    position: relative;
}
  
.portfolio-img-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    width: 100%;
}
  
.img-text-wrapper {
    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;
}
  
.img-text-wrapper .subtitle {
    transition: 1s;
    color: transparent;
}
  
.image-blur {
    transition: 1s;
    filter: brightness(10%);
}
  
.img-text-wrapper:hover .subtitle {
    color: lightseagreen;
    font-weight: 600;
}
  
.logo-wrapper img {
    width: 50%;
    margin-bottom: 20px;
}










