 
 /* NAVIGATION BAR STYLING------------------------------------------------------------------------------------------------------------------ */
 
    /* Setting the font Primary font family as Helvetica (Secondary: Times new Roman) */
    html, body 
    {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    }

    /* Universal page padding for every page is set to 120px due to nav bar fixed position */
    body 
    {
        padding-top: 4vw;
        
    }

    /* Styling for the top naviagtion bar, some animation smoothing put in for scroll event */
    .main-nav
    {
        display: flex;
        top: 0;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        width: 100%;
        height: 5vw;
        background-color: #FAF9F8;
        transition: all 300ms ease-in-out;
        z-index: 100;
        
        
    }

    /* Styling for the logo */
    .logo 
    {
        height: 3vw;
        width: auto;
        margin-top: 10px;
        margin-left: 50px;
        transition: all 300ms ease-in-out;
    }

    /* An appendment class for styling nav bar when the user scrolls */
    .small
    {
        height: 50px;
    }

    /* An appendment class for styling the logo when the user scrolls */
    .logo-small
    {
        height: 25px; 
    }

    /* Styling for the navigation links */
    .nav-links
    {
        font-weight: bolder;
        text-decoration: none;
        color: #9E8C80;
        padding: 1vw;
        font-size: 1vw;
        
        
    }

    .nav-links:hover
    {
        font-size: 1.1vw;
        color: black;
        
    }

    /* Postioning nav links */
    .links
    {
        margin-right: 50px;
        
        
    }


    /* ABOUT STYLE-LAURA  ------------------------------------------------------------------------------------------------*/

    .body
    {
        background-image: url('/images/Background\ about.png');
        background-size:cover; 
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
 

     /* About page Heading  styling*/ 
    .display-4{
        margin-top: 50px; 
        margin-left: 60px; 
        font-size: 25pt;
        font-weight: bold;
    }


     /*Bootstrap Approach -----------------------------------------*/ 
        /* Profile picture css*/ 
    .profile
    {
        margin-top: 25px; 
        margin-left:20px; 
        width:25vw; 
        max-width: 20vw; 
        min-width: 150px; 

    }
    /*Navigation Button styling*/ 
    .button 
    {
        margin-left:50px; 
        margin-top: 50px;
        width: 15vw; 
        min-width: 150px; 
        max-width: 20vw; 
        transition: .5s;

    }
    /* Navigation button on hover */ 
    .button:hover
    {
        transform: scale(1.08);
        cursor: pointer;
    }
    /* About- Page Text Field*/ 
    .about-Text
    {
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
        font-size: 12pt;
        font-weight: bold;
        margin-bottom: 1vw;
        margin-top:40px; 
    }
    /* Quote image styling */ 
    .img-responsive{
        width: 55vw; 
        margin-top:30px;
        min-width: 400px; 
        
    }
    /* Main images*/ 
    .about-images
    {
        width: 40vw; 
        margin: 10px; 
        min-width: 300px; 
    }
    .about-images-div 
    { 
        margin-left: 100px; 
        margin-top: 50px; 
        margin-bottom: 50px;  
    }
   
   

/* PHOTOGRAPHY STYLE-LAURA  ------------------------------------------------------------------------------------------------*/
/* Main body background styling */ 
.body2
{
    background-image: url('../images/Background\ about.png');
    background-size:auto; 
    background-repeat: no-repeat;
}
/* Quote - Image below navigation bar */ 

.container-photo
{
    display:flex; 
    flex-direction: row; 
    justify-content:Center; 
    flex-wrap: wrap; 
    margin-left: 50px; 
    margin-right:50px; 
}
/*Responsiveness of divs*/ 
.div1
{
    margin: 5px;  
}
/*Main body Images - 8 images with hiver effects */ 
 .img:hover
{
    border-radius: 50px; 
    border-color: #D05E15; 
    border-style: solid;  
}
.img
{
width: 300px; 
}
/*  About page header */ 
.header
{ 

width: 50vw; 
min-width: 500px;  
margin: 80px auto 50px;
display: block;
}
/*--------Photography & About Page  - Footer Icons -----------------------------------------------------*/ 
.icon{
    display: inline; 
    Margin-left:10px; 
    margin-right:10px; 
}
.icondiv{
    text-align:center; 
    margin:80px 30px 120px 0; 
}
.icon:hover {
    border-radius: 50%;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.404);
    transform: scale(1.1);
    transition-duration: 0.5s;
}
