
#logo {
    display: inline;
    width: 300px;
    margin-bottom: 25px;
}

h6 {
    text-align: center;
}
body {
    background-image: url('../images/bg-map.jpg');
    background-color: rgb(228, 228, 228);
  background-blend-mode: screen;
}


@media screen and (max-width: 640px) {

    #logo {
        width: 200px;
    }
    
}

/* modal code found online - start */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 100ms ease-in;
    -moz-transition: opacity 100ms ease-in;
    transition: opacity 100ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    max-width: 800px;
    width: 90%;
    position: relative;
    margin: 10% auto;
    padding: 20px;
    border-radius: 3px;
    background: #fff;
}
.close {
    font-family: Arial, Helvetica, sans-serif;
    background: #f26d7d;
    color: #fff;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 64px;
    height: 34px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 7%;
    -moz-border-radius: 7%;
    border-radius: 7%;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    padding-top: 5px;
}
.close:hover {
    background: #fa3f6f;
}

a {
    display: flex;
    line-height: inherit;
    color: #1779ba;
    text-decoration: none;
    cursor: pointer;
    align-items: stretch;
    flex-direction: row-reverse;
    justify-content: center;
}
/* modal code found online - end */

/* begin sidebar css */
body {
    font-family: "Lato", sans-serif;
  }
  
  .sidebar {
    height: 100%;
    width: 85px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    transition: 0.5s;
    overflow-x: hidden;
    padding-top: 60px;
    white-space: nowrap;
  }
  
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }
  
  .sidebar a:hover {
    color: #f1f1f1;
  }
  
  main .sidebar {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  .material-icons,
  .icon-text {
    vertical-align: middle;
  }
  
  .material-icons {
    padding-bottom: 3px;
    margin-right: 30px;
  }
  
  #main {
    padding: 16px;
    margin-left: 85px;
    transition: margin-left 0.5s;
  }
  
  @media screen and (max-height: 450px) {
    .sidebar {
      padding-top: 15px;
    }
    .sidebar a {
      font-size: 18px;
    }
  }
  /* end sidebar css */

  #sidebarTitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    color: rgb(255, 255, 255);
  }

  #searchIcon {
    display: flex;
    justify-content: center;

  }

  .sidebarBtnStyle {
    list-style: none;
    margin-top: 25px;
    text-align: center;
    color: white;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14px;
    padding: 7px 5px;
}

.sidebarBtnStyle:hover {
border-color: #1779ba;
}

hr {
  width:60%;
}