/* 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 */

div {
    text-align: center;
    margin-top: 100px;
    margin-left: 15%;
    padding-top: 200px;
}

.content {
    color: rgb(187, 183, 183);;
}

.content h1 {
    width: 100%;
    font-size: 120px;
    margin-bottom: 25px;
    margin-top: 55px;
}

.content i {
    font-size: 40px;
    color: rgb(194, 12, 12);
}

.quote {
    padding-top: 50px;
    color: rgb(158, 155, 155); 
}



/* Media Query */

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

    #nav-bar {
        border-right: transparent;
        margin-top: 100px;
        display: flex;
        justify-content: center;
        right: 0;
        left: 43%;
        z-index: 0;
        
    }
    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 30px;
        width: 100%;
        border-bottom: 3px solid #59799e;
    }
    
    .content {
        padding-top: 10px;
        margin-top: 150px;
        margin-left: 0px;
    }
    .content h1 {
        font-size: 30px;
    }
    .content i {
        font-size: 15px;
    }
    .quote {
        font-size: 10px;
        padding-top: 0px;
        margin-top: 50px;
        margin-left: 0px;
    }    
}

@media all and (min-width: 768px) and (max-width: 1199px) {
    .nav-link, #nav-header {
        font-size: 20px;
    }
    .content {
        padding-top: 50px;
    }
    .content h1 {
        font-size: 80px;
    }
}

