/*Copyright 2022 Nick Falbo (https://nick.falbo.dev)
SPDX-License-Identifier: Apache-2.0*/
* {
    box-sizing: border-box;
}

html {
    /* Allow nav to scroll through page */
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
}

p {
   color: black;
}

header {
    display: block;
    height: 250px;
}

    /* Navbar */
    .navbar {
        margin-top: -25px;
        display: block;
        position: fixed;
        height: 80px;
        z-index: 99;
        background-color: rgb(130, 130, 130);
        opacity: .95;
        width: 100%;
    }
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-evenly;
            align-content: center;
            background-color: rgb(130, 130, 130);
            border: 0px;
            height: 50px;
            width: 50px;
            cursor: pointer;
            /* position fixed allows for options to cascade from top of screen */
            /*position: fixed;*/
            margin-left: 80%;
            margin-top: 2%;
        }
        .x-span, .middle-span {
            margin-right: 4px;
            width: 40px;
            height: 5px;
            border-radius: 4px;
            display: block;
            background-color: white;
            /*-webkit-transition: 0.5s;*/
            -webkit-transition: 0.5s;
            -webkit-transition: 0.5s;
            -webkit-transition-property: all;
            -webkit-transition-duration: 0.5s;
            -webkit-transition-timing-function: ease;
            -webkit-transition-delay: 0s;
            transition: 0.5s;
            transition-property: all;
            transition-duration: 0.5s;
            transition-timing-function: ease;
            transition-delay: 0s;
        }
        nav li {
            display: inline-block;
        }
        .mobile-nav-list {
            display: none;
        }
        .border-li {
            border-right: 1px solid black;
            padding-right: 3px;
        }
        .nav-link {
            text-decoration: none;
        }
        nav a {
            color: white;
            cursor: pointer;
            transition: .15s;
            font-weight: bolder;
        }
        nav a:hover {
            color: black;
        }

        /* Make hamburger visible in mobile */
        @media screen and (max-width: 800px) {
            .navbar {
                /* Block Display */
                display: block;

                /* Flex Display */
                /*display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                */

                z-index: 99;
            }
            .hamburger {
                display: flex;
                /*margin-right: 5%;*/
                /* Keeps hamburger aligned in top right of drop box */
                align-self: flex-end;
            }
            .nav-list {
                display: none;
            }
            .mobile-nav-list {
                display: none;
                flex-direction: column;
                justify-content: space-around;
                align-items: center;
                width: 100%;
                height: 70%;
                margin-block-start: 0;
                margin-block-end: 0;
                margin-inline-start: 0px;
                margin-inline-end: 0px;
                padding-inline-start: 0;
            }
            .border-li {
                border-right: none;
                padding-right: 0;
            }
        }
    /* ^^ End of Navbar section ^^*/

h1 {
   /* Padding top matches height of navbar */
   padding-top: 10%;
}
section {
    /* Padding top matches height of navbar */
    padding-top: 10%;
    height: 500px;
}
@media screen and (max-width: 800px) {
    h1 {
        /* Padding top adjusted for mobile */
        padding-top: 18%;
     }
     section {
         /* Padding top adjusted for mobile */
         padding-top: 15%;
     }
}

footer {
    padding: 2%;
    display: flex;
    justify-content: center;
    background-color: rgb(235, 235, 235);
    text-align: center;
    font-size: initial;
}



/* jQuerry div styling */
.jQuery-div {
    background-color: #bca;
    width: 100px;
    border: 1px solid green;
    margin-bottom: 10%;
  }
