/* Global styles for Allisin Bloom website */

/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif', 'Georgia', serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
/* Use a smaller font for mobile to avoid wrapping*/
    @media (max-width: 768px) {
      font-size: 1.3rem;
    }
}

/* Content wrapper - replaces inline style */
.content-wrapper {
  display: contents;
}

/* Global rule for clickable elements */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.clickable,
[role="button"] {
  cursor: pointer;
}
