header {
  height: 60px;
  background-image: linear-gradient(
    to right,
    rgb(83, 115, 255),
    rgb(42, 27, 83)
  );
}
/*Main card styling:*/
#locationCity {
  border: 1px solid black;
}

#currentWeather {
  margin-left: 10px;
}

/*Five day card styling*/

#allFiveDayBlocks {
  display: flex;
}

.fiveDayBlock {
  background-color: rgb(50, 66, 80);
  width: 225px;
  justify-content: space-around;
  color: white;
  font-weight: bold;
  padding: 10px 10px 10px 10px;
  margin: 10px 10px 10px 10px;
}

/*hide/unhiode feature*/
.hidden {
  display: none;
}
