@font-face {
    font-family: "Josefin Sans", sans-serif;
    src: url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:wght@500&family=Protest+Revolution&display=swap');
}
body{
    font-family: "Josefin Sans", sans-serif;
}
*{
    margin: 0;
    padding: 0;
}
.container{
    display: flex;
    flex-direction: column;
    background: url(bg.jpg);
    background-size: 100vw 100vh;
}
.box{
    height: 100vh;
    width: 100vw;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}
.search{
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.search input{
    width: 22vw;
    height: 2.2rem;
    border: none;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    text-align: left;
    padding: 0.5rem;
    color: black;
    font-weight: 550;
    background-color:white;
    background:lightgray;
}
.search input::placeholder{
    color:black;
    font-weight: 100;
}

.button button{
    background: lightgray;
    border: none;
    font-weight: 550;
    cursor: pointer;
    margin-top: 3rem;
    margin-left:20px;
    padding: 10px;
} 
.first{
    display: flex;
}
           

.con{
    margin-left: 30vw;
    width: 40vw;
    border: 1px solid rgba(255, 255, 255, 0.212);
    height: 70vh;
    border-radius: 1rem;
    backdrop-filter:blur(10px);
}
.loc{
    margin-left: 10vw;
    margin-top: 10vh;
    padding-bottom:1.5rem;
    display: flex;
    gap: 1rem;
}
.temp{
    display: flex;
    font-size: 30px;
}
.weather{
    margin-left: 10vw;
    display: flex;
    gap:1.2rem;
}
.other{
    display: flex;
    flex-direction: column;
    margin-left: 10vw;
    font-size: 25px;
    margin-top: 2rem;
    color:rgba(255, 250, 240, 0.439);

}
footer{
    display: flex;
    margin-top:4rem ;
    justify-content: center;
    font-size: 20px;
    color:rgba(255, 250, 240, 0.525);
}
.ss{
    display: flex;
    margin: 1rem;
}



@media screen and (max-width:968px) {
    .box{
        min-width: 80vw;
    }
    .search input{
        width:40vw
    }
    .con{
        width: 80vw;
        margin-left: 10vw   ;
    }
}
