*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    background: linear-gradient(to left,#37c6d9 60%, #94f3ff);
}

/* ------------------------ */
.search{
    width: 100%;
    text-align: center;
    height: 15vh;
    align-content: center;
}
.search-bar{
    padding: 0.9rem 1.2rem;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    width: 70%;
    max-width: 50%;
}

.search-btn{
    border: none;
    font-size: 1rem;
    padding: 0.8rem;
    border-radius: 100%;
}
.search-btn:hover{
    background-color: rgb(225, 225, 225);
    cursor: pointer;
}

/* --------------------------- */


.main{
    height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.weather-pic{
    font-size: 7.5rem;
    margin-bottom: 1rem;
}
.temp{
    font-size: 4rem;
    color: white;
}
.city{
    font-size: 2.5rem;
    color: white;
}

/* ------------------------- */

.wind-hum{
    height: 20vh;
    padding: 1.5rem 2.5rem;
    color: white;
}
.flex-dis{
    display: flex;
    align-items: center;
    justify-content: center;
}
.humidity-box{
    width: 40%;
}
.wind-box{
    width: 60%;
}
.humidity-box img{
    width: 3rem;
    height: 2rem;
    margin: 0.5rem;
}
.wind-box img{
    width: 2.7rem;
    height: 2.7rem;
    margin: 0 0.5rem;
}


span{
    font-size: 1.5rem;
}