@import url('https://fonts.googleapis.com/css2?family=Lora&family=Prompt:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.search-box{
    background-color: #fff;
    border-radius: 5rem;
}
.search-box input{
    border: 0;
    background: transparent;
    margin-right: auto;
    border-radius: 5rem;
    width: 85%;
    padding: 0.5rem;
    padding-left: 1rem;
}
.search-box input:focus{
    border: 0;
}
.search-box button{
    background-color: transparent;
    border: 0;
}
img{
    background-color: #ffc107;
}
.mobile{
    display: none;
}
.modal-backdrop{
    display: none;
}
@media screen and (max-width: 991px) {
    .mobile{
        display: block;
    }
    .destop{
        display: none;
    }
}