* {
    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://images.unsplash.com/photo-1513875528452-39400945934d?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=900&ixid=MnwxfDB8MXxyYW5kb218MHx8bGFuZHNjYXBlfHx8fHx8MTY4NTE5NTQ2Ng&ixlib=rb-4.0.3&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1600");
}

.caixa-maior{
    background-color: blue;
    opacity: 0.8;
    border-radius: 25px;
    padding: 20px;
    width: 95%;
    max-width: 450px;
}
.input-cidade{
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
    background-color: darkslategray;
    color: white;
    width: calc(100% - 100px);   
}
.botao-buscar{
border: none;
outline: none;
padding: 10px;
border-radius: 50px;
background-color :darkslategray;
cursor: pointer;
float: right;
}

.img-buscar{
    width: 30px;
}

.caixa-media{
margin-top: 30px;
}
.cidade{
    color: aliceblue;
    font-size: 30px;
    font-weight: 300;
}
.temp{
    font-size: 20px;
    color: aliceblue;
    margin-top: 20px;
}
.caixa-menor{
display: flex;
align-items: center;
margin-top: 25px;
}

.texto-previsao{
    color: aliceblue;
    margin-left: 20px;
    text-transform: capitalize;
}
.umidade{
    color: aliceblue;
    margin-top: 20px;
}