*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.html{
    font-size: 62.5%;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://picsum.photos/1920/1080?random");
}

.caixa-externa{
    background-color: black;
    opacity: 0.8;
    border-radius: 2.5rem;
    padding: 2rem;
    width: 95%;
    max-width: 45rem;
}

.input{
    border: none;
    outline: none;
    padding: 1rem;
    border-radius: 2.5rem;
    font-size: 2rem;
    background-color: #7c7c7c2b;
    color: white;
    width: calc(100% - 7rem);
}

.button{
    border: none;
    outline: none;
    padding: 1rem;
    border-radius: 50%;
    background-color: #7c7c7c2b;
    cursor: pointer;
    float: right;
}

.img-busca{
    width: 2.5rem;
    height: 2.5rem;
}

.caixa-centro{
    margin-top: 2.5rem;
}

.cidade{
    color: white;
    font-size: 2.4rem;
    font-weight: 300;
    text-transform: capitalize;
}

.temp{
    color: white;
    font-size: 2rem;
    margin-top: 1rem;
}

.icone{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.texto-previsao{
    color: white;
    text-transform: capitalize;
    font-size: 1.4rem;
}

.img-previsao{
    width: 5rem;
}

.umidade{
    color: white;
    text-transform: capitalize;
    margin-top: 2rem;
    font-size: 1.4rem;
}



