
html {
    font-size: 16px; /* This sets 1rem to be equal to 16px */
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem; /* Equivalent to 16px */
    line-height: 1.6;
    color: #777777;
    
}

h1 {
    color: #cf8e2d;
    font-weight: 700;
    font-size: 1.5rem; 
}
h2 {
    font-weight: 700;
    font-size: 1.2rem; 
    color: #80ac45;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1rem; /* Equivalent to 16px */
    color: #777777;
}

.footer-content p {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* Equivalent to 14px */
    color: #666;
}

a {
    color: #005a12;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    html {
        font-size: 14px; /* Smaller font size for smaller screens */
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 18px; /* Larger font size for larger screens */
    }
}
