/* style="background-color: blue;", this is taken from inline style of the body */

body {
    background: #07236c;
}
.container {
  display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2px;
    background: blue;

}

/*Nav styles*/
.nav-wrapper {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    padding: 20px; 
    overflow: hidden;
    position: fixed;
    float: none;
    background-color: #1f74d6;
    top:0;
    width: 94.56%;
}

.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;
}

/*style="color:blue;font-size: 40px; background-color:gold; text-align: center;", this is taken from
inline h1 style*/
h1 {/*position: relative;*/ margin-top: 60px; color:blue;font-size: 40px; background-color: #e9f0f3; text-align: center;
}
h2 {color:blue;background: white; text-align: left;
}
/* style="color:white;font-size: 36px;"
This is taken from inline style of P*/
p {color:white;font-size: 24px;font-family: Georgia, 'Times New Roman', Times, serif;margin-top: 0px;
}
P::first-letter {
    font-weight: bold;color: red;font-size: 40px;
}
.emphasis {
    background-color:#0e79e1;
    display: inline;
}
/* if we want to use span<span style="color: white">
}*/

/* Portfolio styles*/
.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    
}
  
.portfolio-item-wrapper {
    position: relative;
    padding: 3px;
    
}
  
.portfolio-img-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    width: 100%;
}
 
.desc {
    padding: 10px;background-color: purple;color: white;
    text-align: center;
}

.desc::first-letter {
    font-weight: bold;color:red; 
}

.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: 25px;
    padding-right: 25px;
}
  
.img-text-wrapper .subtitle {
    transition: 1s;
    color: transparent;
}
  
.image-blur {
    transition: 1s;
    filter: brightness(10%);
}
  
.img-text-wrapper:hover .subtitle {
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
    font-weight: 600;
}
  
.logo-wrapper img {
    width: 50%;
    margin-bottom: 20px;
}
.subtitle {
    font-size: 1em;
    font-weight: 600;
    
}

.column {
    float: left;
    width: 50%;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  /* stye of a link*/
<style>
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:  Unvisted {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
</style>

