/*
/css/biscuits-all-minimal.css
This stylesheet will contain all generic /css/core styles.
Rules for adding:
- Only include styles used in multiple places
- Avoid edge-case styling; use inline <style> for one-offs
- Group styles by purpose with clear section headers
- Refactor aggressively to avoid duplication
*/

/* === Visibility === */
.hidden {display: none;}

/* === Reset & Base === */
* {margin: 0; padding: 0; box-sizing: border-box;}
html {
    font-size: 16px;
    line-height: 1.5;
    font-family: Georgia, serif;
    background-color: #fff;
    color: #000;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    margin-bottom: 0.5em;
}
p {
    margin-bottom: 1em;
}
a {
    color: #003366;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* === Layout === 
/css/core
We are going to put as much as possible into this style sheet file
This file defines the foundational styles for layout, typography, components, and utilities.
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}
.far-right {
    float: right;
    margin-left: 1rem;
}
.hundred {width: 100%; height: auto; padding:4px;}
.ninety-two {width: 92%; height: auto; padding:4px;}
.ninety {width: 90%; height: auto; padding:3px;}
.eighty {width: 80%; height: auto; padding:4px;}
.seventy {width: 70%; height: auto; padding:4px;}
.sixty {width: 60%; height: auto; padding:4px;}
.fifty {width: 50%; height: auto; padding:4px;}
.forty {width: 40%; height: auto; padding:4px;}
.thirty {width: 30%; height: auto; padding:4px;}
.twenty {width: 20%; height: auto; padding:4px;}
.ten {width: 10%; height: auto; padding:4px;}