body{
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}
.weather-app{
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 18px;
  padding: 30px;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
  }

.logo {
  /* position: fixed; */
  top: 0;
  float: left;
  display: block;
  margin: 0 auto;
  width: 126px;
  }

  .Title {
  /* text-align: center; */
  font-size: 40px;
  position: relative;
  /* margin-left: 26px; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-style: italic;
  font-weight: 500;
  color: rgb(110, 182, 241);
  
  
  }

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 55%;
  font-size: 16px;
  padding: 15px 20px;
  }
  
.search-form-button {
  background: #4a47a1;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  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: 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: #f65282;
  }
  
  .weather-app-temperature-container {
    display: flex;
  }
  
  .weather-app-icon {
    font-size: 44px;
    margin-top: 10px;
  }
  
  .weather-app-temperature {
    font-size: 88px;
    margin-left: 10px;
    font-weight: bold;
  }
  
  .weatehr-app-unit {
    margin-top: 16px;
    font-size: 28px;
  }
  
  footer {
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
  }
  .forecastdate {
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .forecastday {
    text-align: center;
    color: rgba(66, 51, 33, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .forecasttemp {
    text-align: center;
    color: #f24444;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .forecasticon{
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto;
  }
  .wwkly-forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
  }
