body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}

/* // Weather App Container a DIV to cover whole body */
.weather-app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  padding: 30px;
}
header {
  border-bottom: 1px solid #f9f7fe; /* Line between header and h1 with clear color */
  padding: 0 0 30px 0;
}

/* Search bar styling */
.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-bottom: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: #885df1;
  padding: 15px 20px;
  width: 100px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}

.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

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

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

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

.weather-app-icon {
    width: 88px;
    height: 88px;
    margin-top: 15px;
}

.weather-app-temperature {
    font-size: 88px;
    margin-top: 10px;
    font-weight: bold;
}

.weather-app-unit {
    font-size: 28px;
    margin-top: 25px;
}

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

.weather-forecast-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;
    margin: 0 auto;
    display: block;
}

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

.weather-forecast-temperature {
    padding: 0 10px;

}

main {
  padding: 30px 0;
}

footer {
  border-bottom: 1px solid #f9f7fe; /* Line below footer with clear color */
  padding: 30px 0 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

a {
  color: #885df1;
  text-decoration: none;
}
