@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Open Sans", sans-serif;

}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://fastly.picsum.photos/id/379/1600/900.jpg?hmac=HhyGO6IrA1mcEO4ZbPCTEwNbB3SXE2w4uH-WzpshAyE');
    background-repeat: no-repeat;
    background-size: cover;

}
.caixa-maior{
    width: 95%;
    max-width: 450px;
    background-color: rgba(10, 9, 9, 0.844);
    border-radius: 25px;
    padding: 20px;

}
.input-cidade{
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
    background-color: rgba(29, 29, 29, 0.708);;
    color: rgb(248, 248, 248);
    width: 350px;

}
.botao-busca{
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 50px;
    background-color: rgba(29, 29, 29, 0.708);
    cursor: pointer;
    float: right;

}
.img-busca{
     width: 20px;
}
.caixa-media{
    margin-top: 30px;
}
.cidade{
    color: white;
    font-size: 25px;
    font-weight: normal;
}
.temp{
    color: white;
    font-size: 20px;
    margin-top: 20px;
}
.caixa-menor{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.texto-previsao{
    color: white;
    margin-left: 20px;
    text-transform: capitalize;
}
.umidade{
    color: white;
    margin-top: 20px;
    
}