*{
    margin:0;
    padding:0;
    font-family:Arial;
    box-sizing:border-box;
}

body {
  background: linear-gradient(-45deg, #00c6ff, #0072ff, #00feba, #5b548a);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.card {
  width: 90%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card{
    width:90%;
    max-width:400px;
    background:linear-gradient(135deg,#00feba,#5b548a);
    color:#fff;
    margin:100px auto;
    border-radius:20px;
    padding:30px;
    text-align:center;
}

.search{
    display:flex;
    gap:10px;
}

.search input{
    flex:1;
    padding:10px;
    border-radius:20px;
    border:none;
}

.search button{
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    cursor:pointer;
}

.weather-icon{
    width:100px;
    margin-top:20px;
}

.temp{
    font-size:60px;
}

.city{
    font-size:30px;
}

.details{
    display:flex;
    justify-content:space-between;
    margin-top:30px;
}

.col{
    display:flex;
    align-items:center;
    gap:10px;
}