*{
    padding: 0;
    margin: 0;
    font-family:sans-serif;
    box-sizing: border-box;
}


body{
     background-color: black;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

img{
     pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.card{

    background: linear-gradient(135deg,#00feba , #5b548a);
    color: #fff;
    width: 90%;     
    max-width: 500px;
    margin: 0 auto ;
    padding: 40px 30px;
    text-align: center;
    border-radius: 50px;
    
}


.search input{
border: none;
outline: none;    
border-radius: 30px;
width: 350px;
padding: 18px;
font-size: 14px;
color: #555;
margin-right: 15px;
font-size: 25px;
    text-align: center;

}

.search button {
border: none;
outline: none;    
border-radius: 50%;
height: 60px;
width: 60px;
cursor: pointer;
background-color: #fff;
}

.search button img {
    width: 18px ;
}

.search :hover{
    background-color: #110602;
    color: #fff;
}


.temp{
    font-size: 100px;
    font-weight: 500;
}    

.city{
    font-size: 50px;
    font-weight: 400;
    margin-top: 10px;
}

.details{
    display: flex;
    justify-content: space-between;
    align-items: center;
margin-top: 50px;
/* padding: 0 5px; */
}

.col{
    display: flex;
    align-items: center;
    text-align: center;
    }

    .humidity, .wind{
            font-size: 30px;

    }
.col img {
    width: 40px;
margin-right: 10px;
}

@media (max-height: 600px), (max-width: 400px) {
  .card {
    padding: 15px;
    border-radius: 30px;
  }

  .temp {
    font-size: 60px;
  }

  .city {
    font-size: 30px;
  }

  .humidity, .wind {
    font-size: 20px;
  }

  .search input {
    width: 200px;
    font-size: 18px;
    padding: 12px;
  }
  .search button {
    width: 45px;
    height: 45px;
  }

  .search button img {
    width: 14px;
  }

}