
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://t.ctcdn.com.br/4LYgCMTf1_XFkjD0oYe3TePI5Mk=/1024x576/smart/i639136.jpeg");    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}   


.caixa-maior{
    background-color: rgb(0, 0, 0);
    opacity: 0.8;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 10px 10px 10px black;
    width: 95%;
    max-width: 450px;
}

.input{
    width: 20vw;
    border: none;
    outline: none;
    padding: 8px ;
    border-radius: 24px;
    font-size: 15px;
    background-color: #e9e4e4b8;
    color: rgb(1, 1, 1);
    
}

.button{
    width: 70px;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 500px;
    margin: 10px;
    margin-top: 20px;
    background-color:  #e9e4e4b8;
    cursor: pointer;
    
}
.button:hover{
    background-color: rgba(57, 119, 207, 0.74);
}

.caixa-media{
    margin-top: 30px;
    
}

.estados{
    color: white;
    font-size: 25px;
    font-weight: 400px;
}

.graus{
    font-size: 20px;
    color: white;
    margin-top: 20px;
}

.caixa-menor{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.img{
    font-size: 25px;
    color:rgb(209, 187, 187);
 
}

.temp{
    font-size: 20px;
    color: rgb(209, 187, 187);
    text-transform: capitalize;

}

.umidade{
    color: wheat;
    margin-top: 20px;
    font-size: 20px;
}


@media screen and (max-width: 1200px) {
    body{

        background-position: left center;
    }  
    
    .input{
        width: 60vw;
    }
    
}