h2{
  padding: 5px;
}
h4 {
  line-height: 16px;
  margin: 5px;
}
.forecast {
 display: flex;
 width: 800px;
 height: 0; 
 visibility: hidden;
}
.col {
  width: 20%;
  background-color: #f5f5f538;
  border-radius: 5px; 
  margin: 5px; 
  height: 180px;
}
.data{
  text-align: center;
  line-height: .4rem; 
}
/* Weather settings */
img {
  width: 64px;
  height: 64px;
}
.weather {
  top: 0;
  position: absolute;
  right: 15px;
  visibility: visible;
}
.hide {
  visibility: hidden;
}
.show {
  visibility: visible;
}
.currentWeather {
  color: aliceblue;
  text-shadow: 0 2px 2px #666;
  text-align: center;
  margin-right: 20px;
}
.tooltip {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black; */
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0; 

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}  