
/* (" https://picsum.photos/1920/1089?random=1"); */
:root {
    --primary-color: #6f66d4;
    --hover: #b48ce3;
}

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

.container-home{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, var(--primary-color), white);
    
}

.box{
    color: white;
    background-image: url("imgs/new\ fundo.png");
    background-size: 100% 100%;
    opacity: 0.85;
    border-radius: 30px;
    padding: 20px;
    width: 95%;
    max-width: 450px;
}

.input-cidade{
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 17px;
    background-color: #9d84dd;
    color: white;
    width: calc(100% - 60px);
}

.input-cidade::placeholder{
    color: white;
}

.buscar:hover{
    background-color: var(--hover);
}

.buscar{
    border: none;
    outline: none;
    padding: 10px;
    cursor: pointer;
    float: right;
    background-color: #9d84dd;
    border-radius: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lupa{
    color: white;
}

.clouds{
    width: 40px;
}

.text-cidade{
    color: white;
    font-size: 28px;
    font-weight: 300;
}

.text-previsao{
    text-transform: capitalize;
}

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

.box-previsao{
    align-items: center;
}

.umidade{
    color: white;
}