#search_bar{
    width: 80%;
    margin: 10px auto;
}
#query{
    width: 100%;
    height: 35px;
    border: 1px solid teal;
    border-radius: 20px;
    padding: 5px 20px;
    font-size: medium;
    outline: none;
    
}

#categories{
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    background-color: white;
}
#categories h3{
    color: white;
    padding: 10px;
    background-color: black;
    border-radius: 10px;

    width: 10%;
    cursor: pointer;
    
}
#categories h3:active{
   color: teal;
    
}

@media(max-width: 520px) {
    #categories h3{
        border: 1px solid orange;
        padding: 5px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 14px;
        
    }
}