#map {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    
}

.jumbotron {
    background-image: url(https://media.giphy.com/media/KESFIloxNjxGzIJIn7/giphy.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .un-pack {
    font-family: 'Bebas Neue', cursive;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-top: 15px;
    font-size: 60px;
    background: url(https://media.giphy.com/media/KESFIloxNjxGzIJIn7/giphy.gif);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip:text;
  }

  .un-pack-sm {
    font-size: 40px;
    font-family: 'Bebas Neue', cursive;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    background: url(https://media.giphy.com/media/KESFIloxNjxGzIJIn7/giphy.gif);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip:text;
  }
  
  .app-header {
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 500px;
    height: 175px;
    background-color: black;
    border-radius: 20px;
  }

.mapouter{
    position:relative;
    text-align:right;
    height:500px;
    width:900px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
        }

.gmap_canvas {
    overflow:hidden;
    background:none;
    height:500px;
    width:900px;
                }

html,
body {
  background-color: dodgerblue;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Let's Go Button */
.button {
    display: inline-block;
    border-radius: 10px;
    background-color: #00b140;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
  
.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.button:hover span {
    padding-right: 25px;
}
  
.button:hover span:after {
    opacity: 1;
    right: 0;
}

.card:hover {
    background-color: #ccccf9;

}

.directions-bkgrd {
    background-color: #DADDDB;
    
}

.custom-dropdown {
    position: relative;
}

/* Travel Input Boxes */
#startCity, 
#destCity,
label {
    display:block;
}

label {
    font-size: 20px;
}

/* Begin of menu elements */
:root {
    --primary: #ffce00;
    --secondary: #171717;
    --light: #fffbfb;
    --dark: #0000cd;
    --font-stack: 'Roboto', 'Helvetica', sans-serif;
  }
  
  body {  
    margin: 0;
    padding: 0;
   
    font-family: var(--font-stack);
  }
  
  .page {
    width: fit-content;
    height: fit-content;
  
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
  }
  /* keeping the wrapper/background connected to the wording */
  .menu-wrapper {
    position: fixed; top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
  }
  
  /* check box hidden rules*/

  .menu-wrapper .toggle {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    z-index: 999;
    cursor: pointer;
    opacity: 0;
  }
  
  .menu-wrapper .hamburger {
    width: 50px;
    height: 50px;
  
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    z-index: 998;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    box-sizing: border-box;
    padding: 10px;
    transition: all 0.3s ease;
  }
  
  /* menu wrapper hamburger and bar */
  .menu-wrapper .hamburger .bar {
    position: relative;
    width: 100%;
    height: 3px;
    background: var(--dark);
    z-index: 5;
    transition  : all 0.2s linear;
  }
  
  .menu-wrapper .hamburger .bar::before, 
  .menu-wrapper .hamburger .bar::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 100%;
    height: 3px;
    background: var(--dark);
    transition: all 0.2s linear;
  }
  
  .menu-wrapper .hamburger .bar::after {
    top: 10px;
  }
  
  /* hover wobble degrees for for hamburger */
  
  .menu-wrapper .toggle:hover + .hamburger {
    transform: rotate(-25deg);
    background: rbga (255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .menu-wrapper .toggle:checked + .hamburger {
    transform: rotate(45deg);
  }
  
  .menu-wrapper .toggle:checked:hover + .hamburger {
    transform: rotate(135deg);
  }
  
  .menu-wrapper .toggle:checked + .hamburger .bar::before, 
  .menu-wrapper .toggle:checked + .hamburger .bar::after {
    top: 0;
    transform: rotate(90deg);
  }
  
  .menu {
    position: relative;
    top: -50px;
    left: 0;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    background: var(--light);
    z-index: 1;
    transition: all 0.6s ease;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  
  .menu ul li {
    color: var(--dark);
    font-size: 20px;
    list-style-type: none;
    text-align: center;
    margin: 0;
    cursor: pointer;
    box-sizing: 15px;
    border-bottom: 2px solid transparent;
  }
  
/* hovering over turns the menu yellow */

  .menu ul li:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
  }
  
  .menu-wrapper .toggle:checked + .hamburger +.menu {
    opacity: 1;
    width: 37vw;
    height: 30vh;
  }
.directions {
    width: 70vw;
    height: 30vh;
    overflow:scroll;
}