body {
    background-color: #f9f7fe;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .weather-app {
    background: white;
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 16px;
    padding: 30px;
  }
  
  header {
    border-bottom: 1px solid #f9f7fe;
    padding-bottom:0 0 30px 0;
  }
  
  
  .search-form-input {
    background: #f9f7fe;
    border: none;
    width: 80%;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
  }
  
  .search-form-button {
    background: #885df1;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  main {
    padding: 30px 0;
  }
  
  .search-form-button:hover {
    background: #7545c1;
  }

  .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 {
    width: 88px;
    height: 88px;
  }

  .weather-app-temperature {
    font-size: 88px;
    line-height: 88px;
    font-weight: bold;
  }
  .weather-forecast {
    display: flex;
    text-align: center;
    justify-content: space-around;
    margin-top: 30px;
  }

  .weather-forecast-temperature {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
  }

  .weather-forecast-temperatures {
    color: #f65282;
    margin-top: 100px;
    display: flex;
    font-size: 20px;
   
  }

  .weather-app-units {
    margin-top: 12px;
    font-size: 38px;
  }
  
  footer {
    border-top: 1px solid #f9f7fe;
    padding-top: 30px 0 0 0;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
  }
