html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0px;
}

.world {
  -webkit-background-size: cover; /* pour Chrome et Safari */
  -moz-background-size: cover; /* pour Firefox */
  -o-background-size: cover; /* pour Opera */
  background-size: cover; /* version standardis�e */
  background: #92edfd;
}

.world #container {
  margin-top: 0px;
}

.score {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 100;
}

.score span {
  background: #333;
  background: rgba(0,0,0,.8);
  border-radius: 5px;
  padding: 1px 6px 3px 6px;
  color: #FFF;
  font-family: 'nbp_sydnie2_standardregular';
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#map-canvas {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

#world-score {
  position: fixed;
  width: 280px;
  height: 25px;
  left: 50%;
  vertical-align: middle;
  text-align: center;
  z-index: 101;
  margin-left: -140px;
  margin-top: 50px;
  background-color: #000000;
  border-style: solid;
  border-width: 0px 2px 2px 2px;
  border-color: #2DAD2D;
}

#city-overlay {
  position: fixed;
  width: 800px;
  height: 100%;
  left: 50%;
  vertical-align: middle;
  text-align: center;
  z-index: 101;
  margin-left: -400px;
  margin-top: 50px;
  background-color: #000000;
  border-style: solid;
  border-width: 0px 2px 2px 2px;
  border-color: #2DAD2D;
}

#city-overlay-name {
  margin-top: 200px;
  width: 100%;
  font-size: 120px;
}

#city-overlay-name a {
  height: 150px;
  text-decoration: none;
  color: #2DAD2D;
}

#city-info-table {
  width: 700px;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: -30px;
}

#city-info-table tr td {
  font-size: 35px;
  color: #ffffff;
}

.map {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.infobox {
  background: #000000;
  opacity: 1;
  width: max-content;
  padding: 3px 3px 3px 7px;
  color: #FFFFFF;
  border-radius: 5px;
  margin-top: -30px;
  font-family: nbp_sydnie2_standardregular;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

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

  .score span {
    font-size: 11px;
  }

}
