    /* Optional: Makes the sample page fill the window. */
    
    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        background: whitesmoke;
    }
    /* Always set the map height explicitly to define the size of the div
      * element that contains the map. */
    
    #map {
        height: 100%;
    }
    
    h1.h1t {
        font-size: 50px;
        text-align: center;
        padding-top: 90px;
        margin-left: -9px;
        color: #0056b3;
    }
    /*Heading Shake Effect*/
    
    h1.h1t:hover {
        animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    .set1 {
        display: flex;
        flex-direction: column;
    }
    
    .set1:hover {
        background-image: url('div1.jpg');
        background-position: center;
        background-repeat: no-repeat;
        h1.h1t {
            color: white;
        }
    }
    
    @keyframes shake {
        10%,
        90% {
            transform: translate3d(-1px, 0, 0);
        }
        20%,
        80% {
            transform: translate3d(2px, 0, 0);
        }
        30%,
        50%,
        70% {
            transform: translate3d(-4px, 0, 0);
        }
        40%,
        60% {
            transform: translate3d(4px, 0, 0);
        }
    }
    
    h6 {
        text-align: center;
        color: #0056b3;
    }
    
    #left {
        float: left;
        width: 50%;
        height: 700px;
    }
    
    #right {
        display: inline-block;
        position: relative;
        float: right;
        width: 100%;
        height: 700px;
    }
    
    #cleared {
        clear: both;
    }
    
    ul {
        list-style-type: none;
    }
    
    form {
        max-width: 420px;
        margin: 20px auto;
        border: #0056b3;
    }
    /*background: #13232f;*/
    
    .formbox {
        background: transparent;
        padding: 10px;
        max-width: 400px;
        margin: 10px auto;
        border-radius: 3px solid#0056b3;
        border: #0056b3;
    }
    
    .formbox:hover {
        box-shadow: 0 0 10px 10px #0056b3;
        border-radius: 8px;
        background: white;
    }
    
    .form {
        display: inline-block;
    }
    
    input.short {
        width: 48%;
        /*max-width: 48%; !* or whatever width you want. *!*/
        color: grey;
        font-family: Helvetica, Arial, sans-serif;
        font-weight: 500;
        font-size: 18px;
        border-radius: 5px;
        line-height: 22px;
        background-color: white;
        border: 2px solid #0056b3;
        transition: all 0.3s;
        padding: 13px;
        margin-right: 6px;
        margin-bottom: 15px;
        box-sizing: border-box;
        outline: 0;
    }
    
    input:focus {
        /*border-bottom: 2px solid cyan;*/
    }
    
    #map-overlap {
        top: 10px;
        left: 10px;
        margin-top: -650px;
        margin-left: 50px;
        text-align: left;
        font-size: 17px;
        padding-top: 15px;
        padding-left: 15px;
        width: 205px;
        height: 155px;
        z-index: 10;
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        font-weight: 200;
        position: relative;
        background: rgb(30, 30, 40);
        color: white;
    }
    
    #at {
        color: #0056b3;
    }
    
    span {
        text-align: right;
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        font-weight: 200;
    }
    
     ::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: dimgrey;
    }
    
    .feedback-input {
        color: grey;
        font-family: Helvetica, Arial, sans-serif;
        font-weight: 500;
        font-size: 18px;
        border-radius: 5px;
        line-height: 22px;
        background-color: white;
        border: 2px solid #0056b3;
        transition: all 0.3s;
        padding: 13px;
        margin-bottom: 15px;
        width: 99%;
        box-sizing: border-box;
        outline: 0;
    }
    
    .feedback-input:focus {
        border: 2px solid #0056b3;
    }
    
    textarea {
        height: 150px;
        line-height: 150%;
        resize: vertical;
    }
    
    [type="submit"] {
        font-family: Helvetica, Arial, sans-serif;
        width: 20%;
        background: white;
        cursor: pointer;
        color: #0056b3;
        font-size: 16px;
        margin-left: 80%;
        padding-top: 10px;
        padding-bottom: 10px;
        transition: all 0.3s;
        margin-top: -4px;
        border: 2px solid #0056b3;
        font-weight: 500;
        border-radius: 8px;
    }
    
    [type="submit"]:hover {
        background: #0056b3;
        color: rgb(30, 30, 40);
        outline: 0 !important;
    }
    
    @media all and (max-width:800px) {
        #left,
        #right {
            display: block;
            float: none;
            width: 100%;
        }
    }
    
    @media all and (max-width:800px) {
        .short {
            min-width: 99%;
        }
    }
    /*@media all and (max-width:800px) {*/
    /*#map-overlap*/
    /*{*/
    /*text-align: center;*/
    /*margin-left: -10px;*/
    /*display: block;*/
    /*width: 99%;*/
    /*}*/
    /*}*/