
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  padding: 20px;
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  background-color: #fef9f4;
  color: #333;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  text-align: center;
  color: #7b3f00;
  margin-bottom: 10px;
}

#poema {
  width: 100%;
  height: 100px;
  font-size: 18px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
}

button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #7b3f00;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #a55c1b;
}

#lienzo {
  margin-top: 20px;
  width: 100%;
  height: 500px;
  border: 2px dashed #a55c1b;
  border-radius: 12px;
  position: relative;
  background-color: #fffef8;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.palabra-contenedor {
  position: absolute;
  cursor: move;
  user-select: none;
}

.palabra {
  font-family: 'Great Vibes', cursive;
  font-size: 24px;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.rotar-btn {
  font-size: 12px;
  margin-left: 4px;
  padding: 2px 5px;
  border-radius: 5px;
  border: none;
  background: #eee;
  cursor: pointer;
}


.no-exportar {
  display: inline-block;
}