@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

body {
    background-image: url("https://loremflickr.com/1600/900/nature,landscape");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caixa-maior {
    background-color: rgba(0, 0, 0, 0.9);
    width: 450px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;

}

.conteudo {
    display: flex;
    align-items: center;
    justify-content: center;

}

.input-cidade {
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 10px;
    background-color: #7c7c7c7b;
    color: white;
    font-size: 20px;
    width: calc(100% -100px);

}

.botao {
    padding: 10px;
    border: none;
    background-color: #7c7c7c7b;
    border-radius: 50%;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.botao:hover {
    background-color: #7c7c7c;
    transform: scale(1.2);
    cursor: pointer;

}

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

.cidade {
    font-size: 28px;
}

.temp {
    font-size: 30px;
    font-weight: bold;
}


.botao-ia {
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: hsl(24, 100%, 58%);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
}

.botao-ia:hover {
    background-color: hsl(24, 100%, 50%);
    transform: scale(1.05);
    cursor: pointer;
}



.resposta-ia {
    font-size: 14px;
    line-height: 1.5;
}