/* Base Layout */
body {
  line-height: 1.6;
  margin: 0 auto;
  padding: 20px;
  max-width: 800px;
  background-color: #ffffff;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; 
  font-size: 16px; /* Adjust to your preferred base size */
  line-height: 1.5; /* Tweak line-height for readability */
  color: #333;      /* A neutral text color */
}

/* If you only want to override a specific container, e.g. #readme-content: */
#readme-content {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; 
  font-size: 16px;
  line-height: 1.5;
  text-align: left; /* If you want to ensure it's not centered */
}
/* Headings & Links in #EC5B01 */
h1, h2, h3 {
  color: #EC5B01;
}

a {
  color: #EC5B01;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Add spacing for paragraphs, lists, etc. */
p {
  margin-bottom: 1em;
}

ol, ul {
  margin-left: 20px;
  margin-bottom: 1em;
}

hr {
  border: none;
  border-top: 1px solid #eeeeee;
  margin: 30px 0;
}

/* Ensure iframes and images are responsive */
iframe {
  width: 100%;
  height: 450px;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Media Query for Smaller Screens */
@media (max-width: 600px) {
  body {
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }

  /* Tweak heading sizes for smaller screens */
  h1 {
    font-size: 1.6em;
    margin-bottom: 0.5em;
  }
  h2 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
  }
  h3 {
    font-size: 1.1em;
    margin-bottom: 0.4em;
  }

  /* Decrease iframe height on mobile */
  iframe {
    height: 300px;
  }
}
