@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');

body {
  font-family: 'Raleway', sans-serif;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}

.site-header {
  margin-bottom: 40px;
}

.site-header__title {
  text-align: center;
  background: #eee;
  padding: 15px;
  border-radius: 4px;
  color: #333; 
  font-size: 28px;
}

.city {
  fill: #CCCCCC;
  stroke: white;
  stroke-width: 0.5;
  transition: fill 0.2s ease-in-out;
}

.city:hover {
   fill: bisque;
   cursor: pointer;
}


#city-name {
    position: fixed;
    display: none; 
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: sans-serif;
    pointer-events: none; 
    z-index: 10;
}

#city-name.active {
    display: block;
}