* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, 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.952);
    width: 450px;
    padding: 20px;
    border-radius: 20px;
}

.input-cidade {
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 10px;
    background-color: #2c2c2c2b;
    color: #fff;
    font-size: 20px;
    width: calc(100% - 110px);
}

.botao {
    padding: 10px;
    border: none;
    background-color: #7c7c7c2b;
    border-radius: 50%;
    margin-left: 8px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s ease;
}

.botao:hover {
    background-color: #7c7c7c;
    transform: scale(1.15);
}

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

.cidade {
    font-size: 28px;
    color: #fff;
}

.temp {
    font-size: 30px;
    color: #fff;
    margin-top: 10px;
    font-weight: bold;
}

.umidade {
    color: #fff;
}

.botao-ia {
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background-color: #1500d4;
    border: none;
    cursor: pointer;
    transition: 0.1s;
}

.resposta-ia {
    color: white;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.botao-ia:active {
    transform: scale(0.98);
    opacity: 0.8;
}