    :root {
        --primary-color:#1c8591;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }  

    html,body {
        background-color: lightblue;
    }

    /* apply styles to <header> */

    h1 {
        font-size: 48px;
    }

    nav {
        display: flex;
        justify-content: space-between;
        background-color:#1c8591 ;
    }

    nav h1 {
        font-size: 36px;
        color:darkblue;
    }

    nav ul {
        list-style-type: none;
        display: flex;
    }

    nav ul li {
        padding: 5px 10px;

    }

    nav ul li a {
        color:black;
        font:bolder;
    }
  

    h2 {
        font-size: 24px;
        color:blue;
    }

    section {
        padding :10px;
    }

    /*apply style to Intro image*/
    .image0 {
        margin: 0;
        height: 300px;
        width: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        position: relative;
    }

    .bottom-right {
        position: absolute;
        bottom: 8px;
        right: 16px;
        font-size: 40px;
    }

    /*Add style to My photo*/
    .image1 {
        position: absolute;
        top: 150px;
        left: 30px;
        border: 3px var(--primary-color) solid;
        height:150px;
        width: 150px;
        border-radius: 10%; 
        border-width: 3px; 
        border-style: solid
    }

    

    /*About me and Work section style*/
    .about{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 50px;  
        width: 90%;
        align-items: center;
    }
    
    .flex-row {
        display: flex;
        justify-content: left;
        flex-direction: row;
    }
    
    .section-title {
        font-size: 35px;
        font-family:cursive;
        color: #024e76;
    }
    
    .step-info{
        flex :2 20%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row ;
    }
    
    .vl-border1 {
        border-right: 5px solid #39a6b2;
        height: 200px;
        flex: 1 9.5%;
    }
    
    .step-text {
        flex: 8;
    }
    
    .step-text p {
        color: var(--primary-color);
        font-size: 23px;
        text-align: left;
        line-height: 1.3;
        margin-left: 40px;
        width: 100%;
    }
    

    .vl-border2 {
        border-right: 5px solid #39a6b2;
        height: 1280px;
        flex: 0 0 185px;
    }

    #container {
        position:relative;
        text-align: center;
        color: white;
    }


    /*Images section style*/  
    .container{
        flex: 80;
    }
    
    .container {
        display: flex;  
        justify-content: space-between;
        align-items:flex-start; 
        width: 100%;  
        flex-direction:column; 
    }
    
    .gallery {
        display: flex;  
        max-width: 1000px; 
        flex-direction: column;
        padding: 10px;
    }

    .gallery-row {
        display: flex;
        flex-direction: row;
        flex-wrap:wrap;
    } 


    .gallery-row figure {
        flex: 0 0 50%;
    }
    

    .gallery__item{
        position: relative;
        grid-gap: 15px; 
        flex-direction: row-reverse;
        padding: 5px;
    }

    .gallery__item2{
        position: relative;
        grid-gap: 15px; 
        flex-direction: row-reverse;
        padding: 5px;
    }

    .gallery__img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border: solid 3px var(--primary-color);
        display:flex;
        padding: 6px;
    }

    /*Images outer and inner drop shadow style*/  
    .gallery__item:hover{
        box-shadow: inset 0px 0px 8px lime,0 0 15px yellow;
        background-color:blue;
        color:rgb(160, 95, 99);  
        position: relative;
        border-radius: 8px;
        transition: all 0.5s ease-in-out;
        padding: 0.5rem 1rem;
    }
    .gallery__item2:hover{
        box-shadow: inset 0px 0px 8px lime,0 0 15px yellow;
        background-color:blue;
        color:rgb(160, 95, 99);  
        position: relative;
        border-radius: 8px;
        transition: all 0.5s ease-in-out;
        padding: 0.5rem 1rem;
    }
    /*Images caption style*/ 
    figcaption {
        position: absolute;
        margin-left: 20px;
        margin-top: -10%;
        font-size: 12px;
        font-style: italic;
        font-weight: bold;
        color:  rgb(22, 44, 44);
        border: solid 1px var(--primary-color);
        background-color: rgb(229, 232, 238);
    }
        
    /*contact section style*/
    .vl-border3 {
        border-right: 5px solid #39a6b2;
        height: 100px;
        flex: 2 18.5%;
    
    }
    
    .contact-info {
        flex: 150;
    }
    .contact-info ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: left;
        list-style: none;
        margin-left: 15px;
        width: 100%;  
        }
    
    .contact-info ul li a {
        margin: 0 30px;
        font-size: 18px;
        color: var(--primary-color);
        text-decoration: none;
        border-bottom: 3px solid;
        padding-bottom: 2px;
        }

    .resume{
        margin: 20px 20px;
        color: #024e76;
    }
   
    /*Code for media query*/

    @media screen and (min-width: 500px) {
   .h1 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .h1:last-child{
        flex-grow: 1;
    }
   