body {
  background: #bbe4e9;
  font-family: "Iosevka Charon", monospace;
  font-style: normal;
}

.weather-app {
  background: #fff;
  margin: 50px auto;
  max-width: 600px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}

a {
  color: #5585b5;
  text-decoration: none;
}

.search-form-input {
  background: #bbe4e9;
  width: 400px;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.search-form-button {
  background: #5585b5;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.weather-app-city {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  color: #273342;
  font-weight: bolder;
  padding-top: 20px;
}

.weather-app-details {
  font-size: 18px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}



.weather-app-details strong {
  color: #f65282;
}

strong {
  font-weight: bold;
}

.time-display {
  color: #273342;
  font-weight: bold;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

.weather-app-unit {
  font-size: 28px;
  margin-top: 6px;
}
.weather-app-icon {
  font-size: 88px;
  height: 88px;
}

.weather-forecast-container{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.weather-forecast-day{
  font-size: 18px;
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 10px;
 

  

  
}

.weather-app-date {
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display : block;
  font-size: 10px;
  margin: 0 auto;

}

.weather-forecast-temperatures{
  font-size: 18px;
  text-align: center;
  justify-content: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  
  
}


.weather-forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;


}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
