/* 1 */
body {
    background-color: #d4e8f0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
}
/* 2 */
.container {
    background: linear-gradient(to bottom, #6cb2f7, #dceefb);
    color: #ffffff;
    max-width: 330px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* 3 */
.busca {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* 4 */
.busca input {
    background-color: #0a1435;
    padding: 10px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
}

/* 5 */
.busca .btn-busca {
    background-color: #0a1435;
    cursor: pointer;
    color: #ffffff;
    border-radius: 5px;
    padding: 5px 10px;
    opacity: 0.8;
}

/* 6 */
.info-principal {
    margin: 30px;
}

/* 7 */
.info-principal h1 {
    font-size: 18px;
}

/* 8 */
.info-principal .temperatura {
    font-size: 68px;
    margin: 20px 0;
}

/* 9 */
.info-principal .condicao {
    font-size: 20px;
}

/* 10 */
.info-secundaria {
    background-color: #ffffff;
    color: black;
    padding: 20px 30px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* 11 */
.info-secundaria .umidade,
.info-secundaria .velocidade-do-vento {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}