body {
    background-image: url(https://s3.amazonaws.com/shecodesio-production/uploads/files/000/169/543/original/pexels-brett-sayles-912364.jpg?1751546228);
    background-size: cover;
    font-family: "Open Sans", sans-serif;
}
  a {
    color: #3b50b2;
  }
  
  .weather-app {
    background: #d5def5;
    max-width: 700px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 17px;
    padding: 30px;
  }
  
  header {
    border-bottom: 1px solid #0092ca;
    padding: 0 0 30px 0;
  }
  
  .search-form-input {
    background-color: #f9f7fe;
    border: none;
    border-radius: 6px;
    width: 80%;
    font-size: 17px;
    padding: 15px 20px;
  }
  
  .search-form-button {
    background: #0092ca;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    margin-left: 5px;
    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: 40px;
    line-height: 48px;
  }
  
  .weather-app-details {
    font-size: 17px;
    color: rgba(39, 33, 66, 0.8);
    line-height: 24px;
    font-weight: 500;
  }
  
  .weather-app-details strong {
    color: #ff5959;
  }
  
  .weather-app-temperature-container {
    display: flex;
  }
  
  .weather-app-icon {
    width: 88px;
    height: 88px;
  }
  
  .weather-app-temperature {
    font-size: 88px;
    line-height: 88px;
    font-weight: bold;
  }
  
  .weatehr-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.5);
    font-size: 17px;
    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: #f65282;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  
  .weather-forecast-temperature {
    padding: 0 10px;
  }
  

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