@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://clicespumoso.com.br/wp-content/uploads/2022/07/d98e5dcf-sol-entre-nuvens.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.box{
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    padding: 30px;
    color: white;
    width: 50vw;
    transition: 0.5s ease;
    height: 50vh;
}

input{
    border-radius: 10px;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 15px;
    text-align: center;
    width: calc(100% - 100px);
}

.search-button{
    border: none;
    outline: none;
    padding: 8px;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    float: right;
}




.wrapper{
    margin-top: 20px;
    text-align: center;
}

.min-max{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.cidade{
    font-size: 30px;
}

.temp{
    font-size: 20px;
}

.description{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.preview-text{
    margin-left: 10px;
    text-transform: capitalize;
}

.humidity{
    margin-top: 20px;
}