body {
  padding: 10px;
  margin: auto;
  max-width: 800px;
  font-family: monospace;
  background-color: #ffffff;
  color: #000000;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
  color: #333333;
}

.description {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.action-links {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}

.links a {
  margin: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #0066cc;
}

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

.section-title {
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.gallery-container {
  text-align: center;
  margin: 20px 0;
}

.gallery-image {
  max-height: 300px;
  border: 2px solid black;
  border-radius: 10px;
}

.meme-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.meme-item img {
  max-height: 300px;
  border: 2px solid black;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meme-item img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.meme-item p {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.about-text {
  text-align: justify;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.8;
}

footer {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  color: #333333;
}

.footer-text {
  font-size: 12px;
  margin-bottom: 10px;
}
