@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}


.mdiv{
  width: 90%;
  max-width: 470px;
  background-image: url('https://cdn.pixabay.com/photo/2023/12/15/14/49/city-8450817_1280.jpg');
  color: chocolate;
  margin: 100px auto 0;
  border-radius: 20px; 
  padding: 40px 35px;
  text-align: center;
}
.search-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}
.search-box input{
    border: 0;
    outline: 0;
    background: white;
    color: #555;
    padding: 10px 25px;
    height: 60px;
    border-radius: 20px;
    flex: 1;
    margin-right: 15px;
    font-size: 18px;
}
.search-box button{
    border: 0;
    outline: 0;
    background: white;
    border-radius: 80%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.search-box button img{
    width: 20px;
}
.weather{
    color: aliceblue;
    display: none;
}
.weather-icon{
    width: 170px;
    margin-top: 30px;

}
.weather h1{
    font-size: 80px;
    font-weight: 500;
}
.weather h2{
    font-size: 45px;
    font-weight: 400;
    margin-top: -10px;
}
.details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 50px;
}
.col{
    display: flex;
    align-items: center;
    text-align: left;
}
.col img{
    /* color: aqua; */
    width: 40px;
    margin-right: 10px;
}
.humidity, .wind{
    color: red;
    font-size: 20px;
    margin-top: -5px;
}
.error{
    color: yellow;
    text-align: left;
    margin-left: 10px;
    font-size: 14px;
    margin-top: 10px;
    display: none;

}
