body {
    font-family: Arial, sans-serif;
    background-image: url(ca901b39-1e56-4d0b-af53-5e89c3159d60.webp);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .weather-container {
    text-align: center;
    background: linear-gradient(to bottom, #87CEFA, #FFDAB9);
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: solid;
    border-width: 5px;
    padding: 20px;
    width: 600px;
    height: 400px;
  }
  
  h1 {
    margin-bottom: 20px;
    color: #2C3E50;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  input {
    padding: 10px;
    width: 80%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
  button {
    margin-top: 10px;
    padding: 15px 25px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
  }
  
  button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  #weatherResult {
    margin-top: 20px;
    font-family: sans-serif;
  }
  
  #weatherResult p {
    margin: 5px 0;
  }
  
  @media (max-width: 768px) {
    .weather-container {
      width: 70%;
      height: auto;
      padding: 15px;
    }
  
    h1 {
      font-size: 28px;
    }
  
    input {
      width: 70%;
      padding: 12px;
    }
  
    button {
      width: 40%;
      padding: 15px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .weather-container {
      width: 70%;
      height: auto;
      padding: 10px;
    }
  
    h1 {
      font-size: 24px;
    }
  
    input {
      padding: 12px;
    }
  
    button {
      padding: 12px;
      font-size: 14px;
    }
  }
  