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

}
.container{
    width: 100%;
    min-height: 100vh;
    padding: 5%;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.search-bar{
 width: 600px;
 max-width: 700px;
 background: rgba(0, 0, 0, 0.482); 
 display: flex;
 align-items: center;
 justify-content: space-between;
 border-radius: 60px;
 padding: 10px 20px;
  background-color: 255,255,255,0.0;
  height: 70px;
  backdrop-filter: blur(4px) saturate(180%);
}
.search-input{
    width: 50%;
    height: 90px;
    background: transparent;
    flex: 1;
    font-size: 20px;
    color: #ffffff;
    border: none;
    outline: none;
    
}

.search-button{
    background-color: rgba(4, 4, 4, 0.0);
    border: 0px;
 border-radius: 0%;
    border: 0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
    color: #000000;
    
    


}
::placeholder{
    color: rgb(240, 248, 255);
}
.search-bar button img{
    width: 25px;
}
    