*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #807a7a;
}

.container{
    
    /* position: relative; */
    width: 400px;
    height: 80%;
    /* height: min-content; */
    overflow: hidden;
    border-radius: 20px;
    background:linear-gradient( 0deg,hsla(210,90%,80%,1) 0%, hsla(212,93%,39%,1) 100%);
    font-family: 'Roboto', sans-serif;

    padding: 20px;
}


.search-box{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: arial;
    height: min-content;

}

.search-box input{
    width: 60%;

    font-size: 23px;
    font-weight: 500;
    font-family: 'Caveat', cursive;
    padding-left: -px;
    border-radius: 4%;
    background: transparent;
    margin-bottom: 20px;
    
    
}


.search-box input::placeholder{
    font-size: 14px;
    font-weight: 800;
    color:#11f9cb;
    text-transform: capitalize;
}
.search-box button{
    cursor: pointer;
    width: 50px;
    height: 50px;
    color:#04253a;
    background-color: #dff6ff;
    border-radius: 50%;
    font-size: 22px;

}

.search-box button:hover{
    color: #fff;
    background-color: #06283d;
}

.search-box {
    
    color:#f44336;
    font-size: 28px;
}
.search-box i:hover{
   background-color: white;
   border-radius: 50%;
   color: #8e0e05;

}

 .weather-box{
    text-align: center;

}

.weather-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 20px;
    
}

.weather-body .weather-img{
   width: 40%; 
  
}
.weather-box{
    margin-block: 20px;
    text-align: center;

}
.weather-box .temperature{
    font-size: 40px;
    font-weight: 700;
    position: relative;


}

.weather-box .temperature sup{
    font-size: 22px;
    position: absolute;
    font-weight: 500;

}

.weather-box .description{
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;

}

.weather-details{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 135px;

}

.humidity, .wind{
    display: flex;
    align-items: center;
}

.humidity{
    margin-left: 20px;

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

.weather-details i{
    font-size: 35px;
}

.weather-details .text{
    
    margin-left: 10px;
    font-size: 14px;
    
}

.text span{
    font-size: 20px;
    font-weight: 600;
}

.location-not-found{
    margin-top: 140px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

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

.location-not-found h1{
    color: #abceda;
    font-size: 20px;
    font-weight: 800;
    font-family: cursive;
    margin-block-end: 15px;
    
    
    

}


