*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}
.container{
    width: 400px;
    height: min-content;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 28px;
}
.search-box{
    width: 100%;
    height:min-content;
    display: flex;  
    justify-content: space-between;
    align-items: center;
}
.search-box input{
    width: 84%;
    font-size: 20px;
    text-transform: capitalize;
    color: black;
    background-color: #e6f5fb;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}
.search-box input::placeholder{
    color: #252525;
}
.search-box button{
    width: 50px;
    height: 50px;
    background-color: #e6f5fb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}
.search-box button:hover{
color: #fff;
background-color: #ababab;
}

.search-box button:active{
    transform: scale(0.95);
}
.weather-body{
    display:none;
justify-content: center;
align-items: center;
flex-direction: column;
margin-block: 20px;
}
.weather-body img{
    width: 60%;
  
}
.weather-box{
    margin-block: 20px;
    text-align: center;
}
.weather-box .temperature{
    font-size: 40px;
    font-weight: 800;
    position: relative;
}
.weather-box .temperature sup{
    font-size: 20px;
    font-weight: 600;
    position: absolute;
}
.weather-box .description{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.weather-details{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 3;
}
.humidity, .wind-speed{
    display: flex;
    align-items: center;
    gap: 10px;
}
.humidity{
    margin-left: 20px;

}
.wind-speed{
    margin-right: 20px;

}
.weather-details i{
font-size: 36px;
}
.weather-details .text{
margin-left: 10px;
font-size: 16px;
}
.text span{
    font-weight: 700;
    font-size: 20px;
}
.location-not-found{
    margin-top: 20px;
    display: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.location-not-found h1{
    font-size: 20px;
    color: #6b6b6b;
    margin-block-end: 15px;
}

.location-not-found img{
width: 80%;
}