
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #87ceeb, #1e90ff);
    color: #fff;
  }

  #allcont {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 300px;
  }

  .inpt {
    width: 70%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
  }

  .btn {
    padding: 5px ;
    border: none;
    background: #70c3e4;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 5px;
   
  }
  
.btn img {

    width: 20px;
    height:20px;
  
}
  .btn:hover {
    background: #1f9ce4b0;
  }

  #weather-data {
    margin-top: 20px;
  }

  .weather-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .city {
    font-size: 1.5em;
    margin: 5px 0;
  }

  .temp {
    font-size: 2em;
    font-weight: bold;
 
}

.feels-like,
.humidity {
  margin: 5px 0;
}


.search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin: 11px;
}
