* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {

    background-image: url("https://loremflickr.com/1600/900/nature,landscape");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;

}

.caixa-maior {
    background-color: rgba(0, 0, 0, 0.5);
    width: 440px;
    padding: 20px;
    border-radius: 20px;

}

.input-cidade {
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 10px;
    background-color: #7c7c7c2b;
    color: #ffff;
    font-size: 20px;
    width: calc(100% - 100px);



}

.botao{
    padding: 10px;
    border: none;
    border-radius: 50%;
    background-color: #7c7c7c2b;
    margin-left: 10px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;


}

.botao:hover{
    background-color: #7c7c7c;
    cursor: pointer;
    transform: scale(1.2);
}

.img-botao{
    width: 20px;
    height: 20px;

}



.caixa-media{
margin-top: 30px;


}

.cidade{
    font-size: 28px;
    color: #ffff;

}


.temperatura{
    margin-top: 10px;
    font-size: 30px;
    color: #ffff;
    font-weight: bold;
}



.umidade{
    color: #ffff;

}

.botao-ia{
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    color: #ffff;
    background-color: #06ce7b9a;
    border: none;
    cursor: pointer;

}

.botao-ia:active{
transform: scale(0.98);
opacity: 0.9;
}
   


.resposta-ia{
    color: #ffff;
    margin-top: 15px;
    font-size: 14px;
   line-height: 1.5;
   
}




