body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px;
    background: #222;
    font-size: 120%;
    background:url(https://source.unsplash.com/1600x900/?nature,landscape);
}
.card{
    background: #000000d0;
    display: flex;
    color: white;
    padding: 2em;
    border-radius: 30px;
    width:100%;
    max-width: 420px;
    margin: 1em;
    font-family: Arial, Helvetica, sans-serif;
}
.search-bar{
    
    background-color:#7c7c7c20;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    margin: 0%;
    padding: 0.3em 1em;
    color: white;
    font-size: 120%;
    text-transform: capitalize;
    outline: none;
    
}
 
 
.fa-search{
    border-radius: 50%;
    padding: 1em;
    border: none;
    cursor: pointer;
    color: white;
    transition: 0.2s ease-in-out;
    background-color: #7c7c7c2b;
}
.fa-search:hover{
    background-color:#dbd4d42b;
}
.temp{
    margin: 0%;
    font-size: 50px;
}
@media(max-width:720px){
    .search-bar{
        width: 70%;
    }
     
}
@media(max-width:480px){
    .search-bar{
        width: 60%;
    }
}


@media(max-width:360px){
    .search-bar{
        width: 60%;
    }
}