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

body {
    background-image: url(imagens/foto2.png);
    background-size: 100% 100%;
    height: 100vh; /* ALTURA */
    width: 100vw; /* LARGURA */
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.caixa-maior {
    background-color: #000000;
    opacity: 0.8; /* TRANSPARÊNCIA */
    width: 95%;  /* LARGURA */
    max-width: 450px; /* LARGURA MÁXIMA */
    border-radius: 25px; /* ARREDONDAR BORDA */
    padding: 20px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.192);
}


.lupa {
    height: 20px;
    width: 20px;
}

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

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

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

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

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

.temp {
    color: #ffffff;
    margin-top: 30px;
    font-size: 30px;

}

.clima{
    color: #ffffff;
    margin-top: 3px;
    
}


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

footer {
	background-color: #0b0b0b;
	color: white;
    opacity: 0.8;
    text-align: center;
    font-size: 1.2em;
    padding: 5px;
    position: fixed;
    bottom:0;
    left:0;
    right: 0;    
}

footer a {

    color: white;
    font-weight: bolder;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}



 