.searcher{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
html{
    scroll-behavior: smooth;
}
#BUTTONS button:hover{
    box-shadow: 0px 4px black;
    height: 70px;
}
.card{
    background-color: transparent;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 20px; 
    border-radius: 15px;
    box-shadow: 1px 1px 3px 2px rgb(233, 233, 233);
    transition: 0.5s;
}
#search2{
    background: linear-gradient(to right,cyan,pink);
}
#display2{
    border-color: rgb(255, 138, 158);
}
.card:hover{
    box-shadow: 1px 1px 3px 2px rgb(170, 170, 170);
    cursor: pointer;
    transition: 0.5s;
}
#output{
    display: none;
}


@media (max-width: 728px){
    #Card-Container{
        display: flex;
        flex-direction: column;
    }
    .card{
        width: 80%;
    }
    .HDN{
        text-align: center;
    }
    .searcher{
        flex-direction: column;
    }
    #display{
        width: 70%;
    }
    #display2{
        width: 70%;
    }
    #BUTTONS button{
       font-size: 12px;
    }
}

