       body {
            background-color: rgb(250,250,250);
        }
        canvas{
          display:block;
          vertical-align:bottom;
        }
        #logo {
            position: absolute;
            width: 50%;
            left:25%;
            top: 25%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 10;
            width:  50%;
            height: 50%;
            background-color: rgba(0,0,0,0);
        }

        #logo-name {
            font-family: "Arvo", serif;
            font-size: 10em;
            color: rgb(250,250,250);
            text-shadow: 2.5px 2.5px 2px #999;
            opacity: .8;
        }
        #tag-line {
            font-family: "Poppins", sans-serif;
            font-size: 1.4em;
            font-weight: 200;
            margin-top: .75em;
            letter-spacing: 1px;
            color: white;
            white-space: nowrap;
        }
        #content {
            position: relative;
            top: 100vh;
        }
        #hero-section, #introduction-section {
            display: block;
        }
        #introduction-section {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            background-color: rgb(250,250,250);
            padding: 5em 2em;
        }
        .intro-paragraph {
            width: 26%;
            margin-bottom: 1em;
        }
        .intro-paragraph h2 {
            text-align: center;
            margin-bottom: .5em;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            color: #222;
        }
        .intro-paragraph p {
            font-family: "Poppins", sans-serif;
            text-align: justify;
            line-height: 1.5;
            color: #333;
            font-size: .9em;
        }
        #service-section {
            padding: 5em 2em;
            background-color: rgb(240,240,240);
        }
        #service-section h3 {
            font-family: "Poppins", sans-serif;
            text-align: center;
            font-size: 2em;
            font-weight: 400;
            border-bottom: 1px solid #CCC;
            margin-bottom: .5em;
        }
        #services {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        .service-paragraph {
            width:25%;
            padding: .5em 1em;
        }
        .service-paragraph .service-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            margin-bottom: .5em;
        }
        .service-icon a {
            text-decoration: none;
        }
        .service-icon span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 2.4em;
            height: 2.4em;
            border-radius: 1.2em;
            color: #021130;
        }
        .service-icon a:hover span {
            background-color: #021130;
            color: white;
        }
        .service-paragraph .service-name {
            font-size: 1.2em;
            font-weight: 400;
            font-family: "Poppins", sans-serif;
            text-align: center;
            margin-bottom: .25em;
        }
        .service-paragraph .service-description {
            text-align: justify;
            line-height: 1.5;
            font-family: "Poppins", sans-serif;
            font-size: .9em;
        }
        .service-paragraph a.learn-more {
            float: right;
            text-decoration: none;
            font-size: .8em;
            color: #555;
            padding: .25em .5em;
            border: 1px solid #CCC;
            border-radius: 5px;
        }
        #contact-us-section {
            padding: 5em 2em;
            background-color: rgb(207,223,242);
        }
        #contact-us-section h3 {
            text-align: center;
            font-family: 'Open Sans Condensed', sans-serif;
            font-weight: 500;
            font-size: 3em;

        }
        #contact-us-section p {
            text-align: center;
        }
        #message-form {
            width: 50%;
            margin: auto;
            text-align: center;
        }
        #message-form label, #div_id_token {
            display: none;
        }
        #message-form input {
            width: 100%;
            padding: .5em .5em;
            margin-top: .25em;
            border-color: #EEE;
            background-color: #EEE;
        }
        #message-form textarea {
            width: 100%;
            padding: .5em .5em;
            margin-top: .25em;
            /*border-color: #DDD;*/
            background-color: #EEE;
        }
        #message-form button[type='submit'] {
            padding: .25em 3em;
            margin:auto;
            margin-top: 1em;
            background-color: rgb(0,51,51);
            border-color: rgb(0,51,51);
            color: white;
            font-family: "Open Sans Condensed", sans-serif;
            cursor: pointer;
        }
        #doc-nav {
            position: fixed;
            top: 30vh;
            right: 20px;            
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 2em;
            height: 150px;
            list-style: none;
        }
        #doc-nav a {
            color: #999;
            text-decoration: none;
            display: flex;
            width: 20px;
            height: 20px;
            justify-content: center;
            align-items: center;
            font-size: .8em;
            cursor: pointer;
            transition: border 3s;
        }
        #doc-nav a.active {
            border: 1px solid #AAA;
            border-radius: 10px;
            color: #666;
        }

        @media screen and (max-width: 1000px) {
            #logo-name {
                font-size: 8em;
            }
            #tag-line {
                font-size: 1.2em;
            }
            .intro-paragraph h2, .service-paragraph .service-name {
                font-size: 1.1em;
            }
            #message-form {
                width: 70%;
            }
        }
        @media screen and (max-width: 800px) {
            #logo-name {
                font-size: 6em;
            }
            #tag-line {
                font-size: 1em;
            }
            .service-paragraph {
                width: 46%;
                margin-bottom: 1em;
            }
            .intro-paragraph {
            width: 46%;
            margin-bottom: 1em;
            }
            .intro-paragraph:first-child {
                padding-right: .5em;
            }
            .intro-paragraph:nth-child(2) {
                padding-left: .5em;
            }
            #doc-nav {
                right: 10px;
            }
            #message-form {
                width: 80%;
            }