/* 
    Created on : Nov 11, 2025, 8:55:26 PM
    Author     : gergo
*/

  
  .words-container {
  position: relative;
  width: 600px;
  height: 400px;
  border: 2px solid #555;
  background: #f8f8f8;
  overflow: hidden;
}

.words-container button {
  position: absolute;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #4a90e2;
  color: white;
  font-size: 14px;
  cursor: pointer;
  white-space: pre-line;
  transition: transform 0.2s;
}

.words-container button:hover {
  transform: scale(1.1);
}

