/* 
chucktopia.css

This is the main style sheet for all mrguilt.com sites. A second sheet may follow to augment/overide it for specific sites. 

Created: 2026-07-06

 */

/* 
****************************************************
Fonts
****************************************************
*/

/* Serif (for body, etc.) */
@import url("//fonts.googleapis.com/css2?family=Rasa");
@import url("//fonts.googleapis.com/css2?family=IBM+Plex+Serif");

/* Sans  Serif (for headers) */
@import url("//fonts.googleapis.com/css2?family=Geist");
@import url("//fonts.googleapis.com/css2?family=IBM+Plex+Sans");

/* Monospace, for code */
@import url("//fonts.googleapis.com/css2?family=Chivo+Mono");
@import url("//fonts.googleapis.com/css2?family=IBM+Plex+Mono");

/* Any special-case typefaces */


/* 
****************************************************
Main CSS Section 

This will be anything for "regular" text, backgrounds, etc. 
****************************************************
*/

body {
    background-color: #f9fdfe;
    color: #2c365a;
    font-weight: 400;
    font-family: 'Rasa','IBM Plex Serif', serif;
    font-size: 135%
}

code {
    font-size: 100%;
    font-family: 'Chivo Mono','IBM Plex Mono', monospace;
    color: #315431;
}

/* 
****************************************************
Headings
****************************************************
*/

h1 {
    font-family: 'Geist','IBM Plex Sans',sans-serif;
    font-size: 250%;
    font-weight: 900;
    text-align: center;
    color: #020165;
    text-decoration: underline;
}

h2 {
    font-family: 'Geist',sans-serif;
    color: #020165;
    font-weight: 700;
    margin-bottom: .5em;
   }

h3 {
    font-family: 'Geist',sans-serif;
    font-size: 125%;
    color: #020165;
    margin-bottom: .2em;
    text-decoration: underline;
}

h4 {
    font-family: 'Geist',sans-serif;
    color: #020165;
    font-size: 105%;
    margin-bottom: .2em;
    text-decoration: underline;
}

h5 {
    font-family: 'Geist',sans-serif;
    color: #020165;
    font-style: italic;
    margin-bottom: .2em;
}

h6 {
    font-family: 'Geist',sans-serif;
    color: #020165;
    font-style: italic;
    margin-bottom: .2em;
}

/* 
****************************************************
Tables
****************************************************
*/

table {
    background-color: #ffffff;
    border: 2px solid black;
    font-weight: 400;
}

th {
    background-color: #ffffff;
    border: 2px solid black;
    font-weight: 800;
}

td {
    background-color: #ffffff;
    border: 2px solid black;
    font-weight: 400;
}

th {
    background-color: #ffffff;
    border: 2px solid black;
    font-weight: 800;
}

td.first-child {
    background-color: #ffffff;
    text-align: center;
    font-weight: 400;
}

