body {
  margin: 0;
  background: #111;
  color: #fff;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 15px 15px;
  box-sizing: border-box;
  text-align: center;
}

.page-title {
  font-size: 2em;
  margin-bottom: 15px;
}

.meme-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.meme-image-container {
  width: 100%;
  max-width: 700px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.meme-image-container img {
  object-fit: contain;
  border-radius: 8px;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .meme-image-container {
    height: auto;
  }
}

.meme-block button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 5px;
}

.deals {
  font-size: 20px;
  margin-top: 4px;
}

.deals a {
  color: #4db8ff;
  text-decoration: none;
}

.deals a:hover {
  text-decoration: underline;
}

