html {
    background: #000000;
    background-image: url(overview-of-the-city.jpg);
    background-repeat: no-repeat;
  background-size: 100% 100%;
     background-position: center;
    -webkit-font-smoothing: antialiased;
}

.bar {
                height: 50px;
                width: auto;
                background-color:darkorange;
                padding-top: 1px;
                position: relative;
                 }
.scrollbar {
                height: auto; 
                width: auto; 
                background-color:orangered;
                position: relative;
            }
.center-text {
      text-align: center;
}

h1 {
  font-family: 'Papyrus', fantasy;
  font-weight: bold;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: lightyellow;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0; 
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: goldenrod;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: lightgoldenrodyellow;
}

.dropdown:hover .dropdown-content {
  display: block;
}