@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

body{
    font-family: 'Inter', sans-serif;
}

.meme{
    display: inline-grid;
    width: 300px;
    margin-right: 9px;
    margin-top: 9px;
    border: 1px solid black;
    color: rgb(0, 0, 0);
    padding: 5px;
}

.button{
    font-family: 'Inter', sans-serif;
    background-color: hsla(241, 84%, 42%, 0.7);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }

.button:hover{
    background-color:hsla(241, 84%, 42%, 0.5);
}

.memeList{
    display: block;
}