@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(236, 231, 231);
}

.banner{
    width: 100%;
    height: 30vh;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.493);
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.title{
    text-align: center;
    font-family: Roboto;
    font-weight: 100;
    font-size: 3rem;
}


.my-search-bar{
    display: flex;
}