/* Import Lexend from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');

/* Dyslexia-Friendly Mode style */
.dyslexic-mode {
  font-family: 'Lexend', sans-serif !important;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* Preview effect on hover */
body.preview-dyslexic {
  font-family: 'Lexend', sans-serif !important;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* Button styling for dyslexia mode */
.btn-accessibility {
  background: #f1c40f;
  color: black;
  font-weight: bold;
  margin-top: 20px;
}

.btn-accessibility:hover {
  background: #e6b800;
} 