/* Base Heading Styling */
h1, h2, h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif; /* Set a consistent font */
  font-weight: bold; /* Ensure all headings are bold */
  margin-bottom: 1rem; /* Add some space below headings */
  line-height: 1.2; /* Adjust line height for readability */
  color: #333; /* Default color */
}

/* Specific Heading Sizes */
h1 {
  font-size: 4rem; /* Main Heading */
}

h2 {
  font-size: 2rem; /* Smaller Subheading */
}

h3 {
	font-size: 1.5rem;
}

  p {
    font-size: 10rem; /* Adjust paragraph size for smaller screens */
  }

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 767px) {
  h1 {
    font-size: 3rem; /* Adjust h1 for smaller screens */
  }

  h2 {
    font-size: 1.5rem; /* Adjust h2 for smaller screens */
  }

  h3 {
    font-size: 1rem; /* Adjust h3 for smaller screens */
  }
}
