header {
  display: flex;
  justify-content: center;
  /* background: linear-gradient(#90e0ef, #00b4d8); */
  background: #000000;
  color: #ffff;
  padding: 15px;
  width: 100%;
}

body {
  background-color: #14213d;
  color: #ffff;
}

#searchButton {
  width: 300px;
  background-color: #982649;
  color: white;
  margin-top: 15px;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 3px 3px 0 #247ba0;
  border-color: #247ba0;
}

#cityInput {
  width: 300px;
  height: 50px;
  border-radius: 10px;
  padding: 10px;
}

#searchHeader {
  font-size: 2em;
  font-weight: bold;
  padding: 10px;
}

.breakClass {
  border-bottom: 2px solid rgb(255, 255, 255);
  margin-top: 15px;
  margin-bottom: 15px;
  width: 300px;
}

.cityNames {
  width: 300px;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #982649;
  color: #ffff;
  border-radius: 10px;
  border-color: #982649;
}

#response-container {
  margin-bottom: 15px;
}

.card {
  padding: 10px;
  border-color: #247ba0;
  background-color: #14213d;
  color: #ffff;
  margin-bottom: 15px;
  padding: 10px;
  box-shadow: 0 4px 8px 0 #247ba0;
}

.currentCard {
  width: 80%;
}

.currentConditionsBreak {
  border-bottom: 1px solid rgb(255, 255, 255);
  margin-top: 5px;
  margin-bottom: 10px;
  width: 180px;
}
.forecastCard {
  width: 18%;
  padding: 10px;
}

.info {
  padding-top: 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-indent: 1em;
}

.cityInfo {
  padding-top: 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.infoText {
  font-weight: bold;
}

.infoResult {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

.cityDate {
  font-size: 20px;
  font-weight: 700;
}

.currentWeatherContainer {
  padding: 15px;
}

.days {
  padding: 8px;
  margin-right: 20px;
  width: 17%;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 8px 16px 0 #982649;
}

.forecastFormat{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}