/* styles.css
   Additional site-wide styles and utility classes.
*/

/* Container for your main site content */
#site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Basic typography within #site-content */
#site-content h1,
#site-content h2,
#site-content h3,
#site-content p {
    margin-bottom: 1em;
    color: #333;
}

#site-content main h1 {
    font-size: 1.25rem;  /* Adjust this value as needed */
    margin-bottom: 0.5rem;
  }
  

/* Link styling */
#site-content a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

#site-content a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.center {
    text-align: center;
}

/* Simple margin/padding helpers */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
