*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.h1{
    font-size: 70px;
    margin: 20px;
    font-weight: bold;
    text-decoration: underline;


}
body{
    display: flex;
     align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;

}
.main{
    border-radius: 20px;
    padding: 30px;
    min-height: 50%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(183, 225, 241);
}
#cityname , #searchBtn , .firstDiv > button{
padding: 10px 20px 10px;
font-size: 1em;
border-radius: 10px;
}
 #searchBtn{
    cursor: pointer;
 }
.firstDiv > p{
    text-align: center;
    font-size: 1.7em;
}
.firstDiv , .secondDiv  {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
gap: 10px;
margin-top: 20px;
text-align: center;
}

.firstDiv > button{
    width: 50%;
    padding: 3px;
    cursor: pointer;
}
#temp {
font-size: 30px;
}
#city{
    font-size: 25px;
}

.otherInfo{
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
gap: 40px;

}
#weatherInfo{
     display: flex;
    align-items: center;
    justify-content: center;
      flex-direction: column;
      width: 100%;
      gap: 30px;
}
.wind > p , .desc {
    font-size: 1.5em;
}