/* style.css */
body {
  font-family: sans-serif;
  text-align: center;
  background-color: #d9e973;
}

#memeContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.meme {
  position: relative;
  margin: 15px;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border: 2px solid #555;
  cursor: pointer;
}

.meme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memeText {
  position: absolute;
  width: 100%;
  color: rgb(52, 6, 6);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.top {
  top: 10px;
}

.bottom {
  bottom: 10px;
  color: lightpink;
}