body {
  background: #ffffff;
  background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(186, 186, 186, 1) 90%, rgba(110, 110, 110, 1) 100%);
  color: black;
  font-family: arial;
}

/* Map Default */

svg path {
 fill:lightgrey;
 stroke: black;
 stroke-width: .1;
 z-index: 1;
}

svg path:hover {
  stroke-width: .5;
  stroke: red;
  cursor: pointer;
}

/* return button */

.return {
  display:block;
  width: fit-content;
  background-image: linear-gradient(to right, white, lightgrey);
  font-size:24px;
  border-radius: 5px;
}

#mapContainer {
  transform-origin: center;
}

/* Info Box */

#infoBox {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  height: 30vw;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid black;
  padding: 20px;
  
  z-index: 1000;
}

#closeBox {
  position: absolute;
  top: 5px;
  right: 8px;
  border: none;
  background: red;
  outline: 1px solid black;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}
#closeBox:hover {
  background: orange;
  color:white;
  transition: .3s;
}

#nationFlags img {
    width: 100px;
    max-width:110px;
    max-height: 110px;
}

.hidden {
  display: none;
}