*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    border: 0;
    outline: 0;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
}
.container{
    width: 400px;
    height: min-content;
    background-color: #fff;
    padding: 30px;
    border-radius: 13px;
    margin: 5px;
}
.heading{
    margin-bottom: 5px;
}

.heading  h1,h3,h4{
    text-align: center;
}
.heading h1{
    font-size: 22px;
    font-weight: 600;
}
.heading h3{
    font-size: 17px;
    text-decoration: underline;
}
.heading h4{
    font-size: 13px;
}
.search-box{
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-box input{
    width: 85%;
    font-size: 18px;
    text-transform: capitalize;
    background-color: #e6f5fb;
    padding: 12px 16px;
    border-radius: 15px;
}
.search-box input::placeholder{
    color: black;
}
button{
    width: 46px;
    height: 46px;
    background-color: #e6f5fb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}
button:hover{
    color: #fff;
    background-color: #ababab;
}

.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: 18px;
    text-align: center;
}
.weather-box .temp{
    font-size: 38px;
    font-weight: 800;
    position: relative;
}
.weather-box .temp sup{
    font-size: 18px;
    position: absolute;
    font-weight: 600;
}
.weather-box .description{
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}
.weather-details{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.humidity,.wind{
    display: flex;
    align-items: center;
}
.humidity{
    margin-left: 20px;
}
.wind{
    margin-right: 20px;
}
.weather-details i{
    font-size: 33px;
}
.weather-details .text{
    margin-left: 10px;
    font-size: 14px;
}
.text span{
    font-size: 18px;
    font-weight: 700;
}

.location-not-found{
    margin-top: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.location-not-found h1{
    font-size: 18px;
    color: #6b6b6b;
    margin-block-end: 15px;
}
.location-not-found img{
    width: 60%;
}