body {
  border-width: 20px;
  font-family: 'Comic Sans MS','cursive','sans-serif';
  background-color: #fff8f0;
  text-align: center;
  padding: 2rem;body {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers vertically */
  align-items: center;     /* centers horizontally */
  min-height: 100vh;       /* full screen height */
  text-align: center;      /* centers text inside elements */
}

}

.meme-container {
  max-width: 600px;
  margin: auto;
  border: 2px dashed #ffcc00;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.hover-image img {
  width: 300px;
  height: auto;
  transition: 0.3s ease;
}

.hover-image img:hover {
  content: url("content/cat-hover.png");
}


