*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: deepskyblue;
}
.weather-wrapper{
background-color: aqua;
padding: 1.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 0.7rem;
}
img{
margin: 1rem;
border-top-right-radius: 0.7rem;
border-bottom-left-radius: 0.7rem;
}
input{
    border-radius: 0.5rem;
    padding: 0.6rem;
    border: none;

}
button{
    width: 2rem;
    height: 2rem;
    border: none;
}
.temp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.footer{
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}