body {
  font-family: Arial, sans-serif;
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
}

.controls {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}

input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

button {
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #00c853;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover {
  background: #00e676;
}

.meme {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.meme img {
  max-width: 100%;
  border-radius: 10px;
}

.text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  text-align: center;
  width: 90%;
}

.top {
  top: 10px;
}

.bottom {
  bottom: 10px;
}
