body {
  padding: 16px;

  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}

.templates {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.template {
  width: 80px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}

.template.active {
  border-color: #ff4d6d;
}

textarea {
  width: 100%;
  height: 80px;
  margin-bottom: 12px;
}

.preview {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 12px;
}

.preview img {
  width: 100%;
  border-radius: 16px;
}

#preview-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: #c00;
  font-size: 22px;
  font-weight: bold;
}

button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}
