body {
    background: #f9f7fe;
    font-family: "Roboto", sans-serif;
  }
  
  a {
    color: #885df1;
  }
  
  .weather-app {
    background: white;
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  }
  
  header {
    border-bottom: 1px solid #f9f7fe;
    padding-bottom: 30px;
  }
  
  .search-input {
    background-color: #f9f7fe;
    border: none;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    padding: 20px;
    width: 75%;
    border-radius: 6px;
  }
  
  .search-button {
    margin-left: 5px;
    font-size: 16px;
    background-color: #885df1;
    color: white;
    border: none;
    padding: 20px;
    width:130px;
    line-height: 1;
    border-radius: 5px;
  }
  
  main {
    padding: 30px 0;
  }
  
  .current-temperature {
    font-size: 48px;
    
  }
  
  .current-weather {
    display: flex;
    justify-content: space-between;
  }
  
  .current-city {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
  }
  .current-details {
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  
  .current-details strong {
    color: #f65282;
  }
  
  .current-temperature-icon {
    position: relative;
    top: 15px;
    width: 80px;
    margin-right: 10px;
    padding-left: 0px;
  }
  
  .current-temperature-value {
    font-size: 80px;
    font-weight: bold;
  }
  
  .current-temperature-unit {
    font-size: 28px;
    position: relative;
    top: -38px;
  }
  .weather-forecast{
      display: flex;
      justify-content: space-around;
      
  }
  .weather-forecast-day{
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
  }

  .weather-forecast-img img{
    width: 40%;
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
  }
  .weather-forecast-tempts{
    text-align: center;
    color:#f65282 ;
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .temperture-high{
    padding-right: 10px;
  }
  footer {
    border-top: 1px solid #f9f7fe;
    text-align: center;
    
    
    margin-top: 20px;
    background-color: #f9f7fe;
    color: rgba(39, 33, 66, 0.4);
    font-size: 13px;
   
    
  }
  
  a{
    text-decoration: none;
    color:#f65282
  }
  a:hover{
    color:#e90c4f
  }
  