body {
    background: linear-gradient(135deg, #f9f7fe, #e2e2e2);
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
  }
  
  a {
    color: #885df1;
  }
  
  .weather-app {
    background: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.1);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  header {
    border-bottom: 1px solid #f9f7fe;
    padding: 0 0 30px 0;
  }
  
  .search-form-input {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    width: 80%;
    font-size: 16px;
    padding: 15px 20px;
    color: #885df1;
    outline: none;
  }
  
  .search-form-button {
    background: #f65282;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    margin-left: 5px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .search-form-button:hover {
    background: #f45a76;
  }
  
  main {
    padding: 30px 0;
  }
  
  .weather-app-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .weather-app-city {
    margin: 0;
    font-size: 38px;
    line-height: 48px;
    color: #f65282;
  }
  
  .weather-app-details {
    font-size: 16px;
    color: rgba(39, 33, 66, 0.6);
    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: 22px;
  }
  
  .weather-app-temperature {
    font-size: 88px;
    margin-left: 10px;
    font-weight: bold;
    color: #f65282;
  }
  
  .weather-app-unit {
    margin-top: 16px;
    font-size: 28px;
  }

  /* Forecast container */
.forecast-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Individual forecast box */
  .forecast-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 120px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Styling for the temperature */
  .forecast-box .temperature {
    font-size: 20px;
    font-weight: bold;
    color: #f65282; 
  }
  
  /* Description styling */
  .forecast-box .description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
  }
  
  /* Add some responsiveness */
  @media (max-width: 768px) {
    .forecast-container {
      flex-direction: column;
      align-items: center;
    }
  
    .forecast-box {
      width: 100px;
      margin-bottom: 10px;
    }
  }
  
  
  footer {
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
  }
  
  
  