body {background-color: #F6F5FA;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a {
  color: blue;
}





.weather-app-may-2025 {
  background: white;
  max-width: 600px;
  margin: 45px auto; 
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
}

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


.search-form-input {
  background-color: #F6F5FA;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 20px;
}

.search-form-button {
  background: blue;
  padding: 21px 30px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  color: white; 
}

main {
  padding: 30px 0;
}

.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;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}

.weather-app-details strong {
  color: purple}

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

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

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

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

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

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

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


footer {
  border-top: 1px solid #d1cfd6;
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 12px;
  margin: 20px 0 0 0; 
  color: rgba(0, 0, 0, 0.5)
}
