/* nav ul li {
    border: 2px solid  blue;
}
*/

body {
    font-family: Helvetica, San-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #363636;
}

#header {
    background: #59799e;  
    width: 100%;
    height: 103px;
    position: fixed;
    top: 0;
    z-index: 2;
    text-align: center;
    
    
}

#logo {
    height: 100px;
}

#logo:hover {
  background-color: #597DA5;
}


/* left column */

#nav-bar {
    height: 100%;
    width: 15%;
    top: 0px;
    margin: 100px 0 0 0;
    padding: 0;
    border-right: 3px solid #59799e; 
    position: fixed;
    text-align: center;
    z-index: 1;
}

#nav-header {
    color: rgb(225, 233, 255);
    font-size: 45px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 0;
    border-bottom: 3px solid #59799e; 
    text-shadow: 0px 3px #59799e;
    background-color: #849cb8;
}

nav ul{
    height: 100vh;
    text-align: center;
    list-style-type: none;
    padding-left: 0;
}

nav ul li {
    margin: 20px 20px 20px 20px;
    padding-bottom: 30px;
    border-bottom: 3px solid #59799e;
}

.nav-link {
    color: #59799e;
    text-shadow: 0px 2px white; 
    font-size: 30px;
}

a:link {
    text-decoration: none;
}
a:hover {
    background-color: #59799e;
    color: white;
}


/* content */

.body-title {
    text-align: center;
    margin-top: 130px;
    margin-left: 20%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
}

.image {
   align-self: stretch;
   margin-left: -40px;
}

.image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: 0 0 5px 5px #59799e;
}

.content {
    color: rgb(187, 183, 183);
    align-self: center;
    margin-left: 80px;
}

.content h1 {
    width: 100%;
    font-size: 70px;
    text-decoration: underline;
}

.blog {
    color: rgb(187, 183, 183);
    margin-left: 20%;
    margin-top: 5%;
    line-height: 2.5em;
    text-align: justify;
    margin-right: 60px;
}

.blog section {
    margin-bottom: 80px;
}

.blog section p {
    font-size: 20px;
}

.blog section h1 {
    margin-bottom: 40px;
}

.blog section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Media Query */

@media all and (min-width: 320px) and (max-width: 767px) {
    #logo {
        height: 90px;
    }

    #nav-bar {
        border-right: transparent;
        margin-top: 110px;
        margin-left: 45%;
        
        display: flex;
        justify-content: center;
        position: static;
        
    }
    nav ul {
        display: flex;
        flex-direction: row;
        height: 80px;
        margin: 0;
    }
    
    #nav-header {
        display: none;
    }

    .nav-link {
        font-size: 15px;
        text-shadow: 0px 1px #59799e;
    }
    nav ul li {
        margin: 10px 20px;
        width: 100%;
        border-bottom: 3px solid #59799e;
    }

    
    .image {
        margin-left: 0px;
        
     }
     .image img {
        width: 150px;
        height: 150px;
    }
    .body-title {
        display: block;
        margin-left: 0px;
        margin-top: 20px;
    }
    .content {
        margin-left: 10px;
        margin-right: 10px;
    }
    .content h1 {
        font-size: 25px;
    }


    
    .blog {
        margin-left: 5%;
        margin-right: 20px;
        margin-top: 50px;
        margin-bottom: 20px;
        line-height: 1.5em;
    }
    .blog section {
        margin-bottom: 40px;
    }
    .blog section h1 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .blog section p {
        font-size: 12px;
        
    }
   
    #valueTest {
        width: 90%;
    }

}

@media all and (min-width: 768px) and (max-width: 1199px) {
    .nav-link, #nav-header {
        font-size: 20px;
    }
    
    .image {
        margin-left: 0px;
        
     }
     .image img {
        width: 200px;
        height: 200px;
    }
    .body-title {
        display: block;
        margin-left: 20%;
    }
    .content {
        margin-left: 0px;
        margin-right: 10px;
    }
    .content h1 {
        font-size: 35px;
    }
    .content p {
        font-size: 25px;
    }
    .blog h1 {
        font-size: 20px;
    }
    
    .blog {
        margin-left: 20%;
        margin-right: 20px;
        margin-top: 80px;
    }
    #valueTest {
        width: 90%;
    }  
}