*{
    padding: 0;
    margin:0 ;
}
body{
    overflow: hidden;
    font-family: Bahnschrift, system-ui;
}
h1{
    display: flex;
    width: 100vw;
    height: 7vh;
    align-items: center;
    justify-content: center;
}
.memeList{
    min-height: 86vh;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow-x: auto;

    & button{
        font-weight: bold;
        font-size: 1.5rem;
        height: 15vh;
        width: 15vh;
        border-radius: 15px;
        border: none;
        cursor: pointer;
        margin: 15px;
        background-color: lightgray;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(5px);
    }
}