* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

.box-main {
    display: flex; 
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    
    background-image: url("https://source.unsplash.com/1600x900/?landscape");
}

.caixa-maior {
    background-color: #000000;
    width: 95%;
    max-width: 420px;
    opacity: 0.8;
    padding: 20px;
    border-radius: 25px;
}

input {
    border: none;
    outline:  none;
    padding: 10px;
    border-radius: 24px;
    font-size: 20px;
    background-color: #7c7c7c2b;
    color: #ffffff;
    width: calc(100% - 100px);
}

button {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 50px;
    background-color: #7c7c7c2b;
    cursor: pointer;
    float: right;
}

button:hover {
    background-color: #7c7c7c6b ;
}

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

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

.lupa {
    height: 20px;
}

h2 {
    color: white;
    font-size: 28px;
}

.temp {
    color: #ffffff;
    margin-top: 20px;
}

.descricao {
    color: #ffffff;
    margin-left: 20px;
    text-transform: capitalize;
}

.umidade {
    color: #ffffff;
    margin-top: 20px;
}

footer {
    display: flex; 
    align-content: center;
    align-items: center;
    flex-direction:column;
    padding: 30px;
    width: 100vw;
    min-width: 320px;
    background-color:rgb(43, 40, 40);
}

