@charset "UTF-8";

/*typical Device Breakpoints
----------------------------
Pequenas telas: até 480px
Celulares: 481px até 768px
tablet: 768px até 1024px
Desktop: 1024px até 1440px
grandes telas: acima 1440px 
*/

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(to bottom, #8BD9D1, #0460D9);
    
    display: flex;
    justify-content: center;
    align-items: center;
}

div.caixa-maior {
    width: 95%;
    max-width: 450px;
    background: rgb(0, 0, 0);
    opacity: 0.8;
    border-radius: 25px 0px 25px 0px;
    padding: 20px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.500);
}

.input-cidade {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 20px;
    background-color: rgba(169, 169, 169, 0.24);
    color: white;
    width: calc(100% - 100px);
}

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

button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

span {
    padding: 5px;
    margin: auto;
}

span:hover {
    color: black;
}

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

h2.cidade {
  color: white;
  font-size: 28px;
  font-weight: bold;  
}

.temp {
    color: white;
    font-size: 20px;
    margin-top: 20px;
}

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


.condicao {
    color: white;
    margin-left: 20px;
    text-transform: capitalize;
}

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

img {
    display: block;
    background-size: cover;
}


