/* 
chucktopia-mobile.css

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

Created: 2026-07-07

 */

/* 
****************************************************
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: 500%
}

code {
    font-size: 80%;
    font-family: '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-size: 100%;
    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: 800;
}

/* 
****************************************************
Table for Signature Block

* background-color should match body.

****************************************************
*/
table.sig {
    background-color: #f9fdfe;    
    border: none;
    font-family: "IBM PLex Sans",sans-serif;
    font-weight: 400;
    width: 100%;
    font-size: 50%
}



th.sig {
    font-family: "IBM Lex Sans",sans-serif;
    background-color: #f9fdfe;
    border: none;
    line-height: 23px;
}

td.sig {
    background-color: #f9fdfe;
    border: none;
    vertical-align: top;
    font-family: 'Rasa','IBM Plex Serif', serif;
    font-weight: 400;
}


td.sig:first-child {
    background-color: #f9fdfe;
    border: none;
    vertical-align: top;
    text-align: left;
    font-family: 'Rasa','IBM Plex Serif', serif;
    font-weight: 400;
}
