*{
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family:serif;
    padding: 0%;
}

body{
    min-height: 100vh;
    background-color:  #c5d5c5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 400px;
    background-color: white;
    border-radius: 12px;
    padding: 25px;
}

.search-box{
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: space-between;
}

.search-box input{
    font-size: 20px;
    text-transform: capitalize;
    background-color: #c4e4ff;
    border-radius: 14px;
    padding: 12px 16px;
}

.search-box input::placeholder{
    color: black;
}

.search-box input:hover::placeholder{
    color: white;
}

.search-box input:hover{
    background-color: darkgrey;
}

.search-box button{
    background-color: #c4e4ff;
    border-radius: 50%;
    height: 46px;
    width: 46px;
    cursor: pointer;
}

.search-box button:hover{
    background-color: darkgrey;
    color: white;
}

.weather-body{
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 20px;
}

.weather-body img{
    width: 60%;
}

.weather-box{
    margin: 0%;
    padding: 0%;
    text-align: center;
}

.temperature{
    font-size: 40px;
    font-weight: bold;
    position: relative;
}

.temperature sup{
    position: absolute;
    font-size: 20px;
    font-weight: bold;
}

.description{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.weather-details{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 30px;
}

.humidity{
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.wind-speed{
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.weather-details i{
    font-size: 30px;
}

.weather-details .text{
    margin-left: 10px;
    font-size: 16px;
}

.text span{
    font-size: 20px;
    font-weight: 700;
}

.location-not-found{
    margin-top: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.location-not-found h2{
    color: #6b6b6b;
}

.location-not-found img{
    width: 80%;
}

.text-dark{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: black;
    text-align: left;
}
