body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1d3c74, #3e444f);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    background: linear-gradient(135deg, #1d3c74, #3e444f);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
  }
  
  .search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
  }
  
  button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.5s ease;
  }
  
  button:hover {
    background: #0056b3;
  }
  
  .loading {
    display: none;
    font-size: 1.2em;
    margin-top: 20px;
  }
  
  .weather-result {
    margin-top: 20px;

  }
  
  .weather-result h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .weather-result p {
    font-size: 1.2em;
    margin: 5px 0;
  }
  
  .weather-result img{
    width: 100px;
    height: 100px;
    margin-top: 10px;
  }
  
  .error {
    color: #ff6b6b;
    font-size: 1.2em;
    margin-top: 20px;
  }
  
  .social-media {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  
  .social-icon {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    color: #086cab;
    transform: scale(1.2);
  }
  
  footer {
    margin-top: 30px;
    font-size: 1em;
    color: #fff;
    opacity: 0.8;
    text-align: center;
  }
  
  footer p {
    margin: 0;
  }