/* Duotone color scheming:
   Uses blossom as the revealing/stark color
   Uses fade as the more prominent color
*/
/* bg color is used for the background of the page
   bg-alt is used for code-blocks etc
*/
/* color of all the text on the page */
/* Sakura.css v1.0.0
 * ================
 * Minimal css theme.
 * Project: https://github.com/oxalorg/sakura
 */


 /*
BG color is 
 */


@font-face {
  font-family: "mySymbols";
  src: url(../font/strippedCards2.ttf) format("truetype");
}



/* Body */
html {
  font-size: 62.5%;
  font-family: serif;
  background-color: #eee8d5;
  background-color: #fdf6e3;
}

body {
  font-size: 1.8rem;
  line-height: 1.618;
  max-width: 45em;
  margin: auto;
  color: #657b83;
  color: #586e75;
  color: #073642;
  color: hsl(192, 81%, 14%);
  color: hsl(194, 14%, 30%);
  background-color: #;
  padding: 10px;
}

@media (max-width: 684px) {
  body {
    font-size: 1.53rem;
  }
}
@media (max-width: 382px) {
  body {
    font-size: 1.35rem;
  }
}
p {
  margin-top: 0px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.1;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 700;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: #002b36;
}

h1 {
  font-size: 2.35em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1em;
}

small, sub, sup {
  font-size: 75%;
}

hr {
  border: 1.5px solid #7a0019;
}
.smallLine {
    border: 0.1px solid #657b8322; width:80%;
}

a {
  text-decoration: none;
  color: #7a0019;
}
a:hover {
  color: #073642;
  border-bottom: 2px solid #073642;
}

ul {
  padding-left: 1.4em;
}

li {
  margin-bottom: 0.4em;
}

blockquote {
  font-style: italic;
  margin-left: 1.5em;
  padding-left: 1em;
  border-left: 3px solid #7a0019;
}

img {
  max-width: 100%;
}

/* Pre and Code */
pre {
  background-color: #eee8d5;
  display: block;
  padding: 1em;
  overflow-x: auto;
}

code {
  font-size: 1em;
  padding: 0;
  background-color: #eee8d5;
  white-space: pre-wrap;
}

pre > code {
  padding: 0;
  background-color: transparent;
  white-space: pre;
}



/* Tables */
table {
  text-align: justify;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  
}

td, th {
  padding: 0.5em;
  border-bottom: 1px solid #eee8d5;
}

/* Buttons, forms and input */
input, textarea {
  border: 1px solid #3a3a3a;
  font-size: 1.26rem;
}
input:focus, textarea:focus {
  border: 1px solid #7a0019;
}

textarea {
  width: 100%;
}

.button, button, input[type=submit], input[type=reset], input[type=button] {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.35rem;
  background-color: #7a0019;
  color: #eee8d5;
  border-radius: 5px;
  border: 1px solid #7a0019;
  cursor: pointer;
  box-sizing: border-box;
}
.button[disabled], button[disabled], input[type=submit][disabled], input[type=reset][disabled], input[type=button][disabled] {
  cursor: default;
  opacity: 0.5;
}
.button:focus, .button:hover, button:focus, button:hover, input[type=submit]:focus, input[type=submit]:hover, input[type=reset]:focus, input[type=reset]:hover, input[type=button]:focus, input[type=button]:hover {
  background-color: #073642;
  border-color: #073642;
  color: #eee8d5;
  outline: 0;
}

textarea, select, input[type] {
  color: #3a3a3a;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignoblue by Webkit */
  margin-bottom: 10px;
  background-color: #eee8d5;
  border: 2px solid #93a1a1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  padding:6px 2px;
}
textarea:focus, select:focus, input[type]:focus {
  border: 2px solid #7a0019;
  outline: 0;
}

input[type=checkbox]:focus {
  outline: 1px dotted #7a0019;
}

label, legend, fieldset {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}



details {
    border: 2px solid #7a0019;
    border-radius: 10px;
    padding: .5em .5em 0;
    /*background-color: #fff2cc;*/
}

summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}















/*-------------------------------------------------------------------------------------------------------------------------------------*/
/*THIS IS CUSTOM STUFF MEANT TO BE ACTUALLY USEFUL FOR MAKING NOTES*/
/* Custom Stuff */

.definition {
  padding: 0.5em;
  border-radius: 25px;
  background-color: #eee8d5;
  background-color: #fff2cc;
  border: 0px solid #b58900;
  border: 1.5px solid #7a0019;
}


.definition h4 {
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: hsl(45, 100%, 90%);
  text-align: center;
}

.highlight{
    padding: 0.5em;
    background-color: #eee8d5;
}

.mySimpleNavBar {
  list-style-type: none;
}
.mySimpleNavBar li{
  display: inline; 
  margin-left:3em;
  margin-right:3em;
}





.flexRow {
    width:100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.flexRow div {
}
























/*-------------------------------------------------------------------------------------------------------------------------------------*/
/*THIS IS STYLING JUST FOR FUN. CAN DELETE THIS IN STYLE SHEET VARIANTS*/
/*Card Stuff*/

.rulesBlock {
  padding: 0em;
  margin-top: 1em;
  margin-bottom: 1em;
  border-radius: 1em;
  border: 1px solid #7a0019;
  background-color:  hsl(45, 100%, 60%);
  color: #073642;
}

/*.rulesBlock h4{
  margin-top: 0.5em;
  margin-bottom: 0em;
  color: #002b36;
}*/

.rulesBlock p, .rulesBlock ul{
  margin: 0em; 
  line-height:2.2ex; margin-bottom:0.5ex;margin-top:0.5ex;
}

.rulesBody {
  padding: 1.5em;
  border-radius: 1em;
  background-color: #ffecb3;
  /*margin-bottom: 1em*/
}

.rulesBody p, .rulesBody ul{
  margin: 0em; 
  line-height:2.8ex; margin-bottom:1ex;margin-top:1ex;
}

.cardAuthor {
  text-align:right; padding-right:1em; padding-top:0px;
  font-size: smaller;
}

#flex-container {
  display: flex;
  flex-direction: row;
  margin-left:1em; margin-right: 1em;
  vertical-align: middle;
  min-width: 90%;
}
#flex-container > .flex-item {
  flex: auto;
  max-width: 4em;
}
#flex-container > .flex-title {
  flex: auto;
}
#flex-container > .flex-item  img{
  max-height: 3em; 
  margin-top: 1em;
}

/* Image Classes for embadding cards LeftCardHeader,RightCardHeader,InlineCard*/
.lch {
  height: 3em; float:left; margin:1em; margin-right: 0em;
}
.rch {
  height: 3em; float:right; margin:1em; margin-left: 0em;
}
.ilc {
  min-height: 2em; 
  max-height: 2.5em; 
  vertical-align: text-bottom;
}
.bigCard {
  min-height: 4em; 
  max-height: 4em; 
  vertical-align: text-bottom;
}

.cC {color:green; font-weight: bold; font-family: "mySymbols"; 
  background-color: white; 
  padding:0.2ex; 
  padding-bottom: 0ex;
  border-radius: 0.2em;
  border: 2px solid green;}
.cD {color:blue; font-weight: bold; font-family: "mySymbols";
  background-color: white; 
  padding:0.2ex; 
  padding-bottom: 0ex;
  border-radius: 0.2em;
  border: 2px solid blue;}
.cH {color:red; font-weight: bold; font-family: "mySymbols";
  background-color: white; 
  padding:0.2ex; 
  padding-bottom: 0ex;
  border-radius: 0.2em;
  border: 2px solid red;}
.cS {color:black; font-weight: bold; font-family: "mySymbols";
  background-color: white; 
  padding:0.2ex; 
  padding-bottom: 0ex;
  border-radius: 0.2em;
  border: 2px solid black;}
.card {color:#3a3a3a; font-weight: bold; font-family: "mySymbols";
  background-color: white; 
  padding:0.2ex; 
  padding-bottom: 0ex;
  border-radius: 0.2em;
  border: 2px solid #3a3a3a;}
.redJoker {color:red; font-weight: bold; font-family: "mySymbols";
  background-color: white; 
  padding:0.2ex; 
  border-radius: 0.2em;
  border: 2px solid #3a3a3a;}
.blackJoker {color:black; font-weight: bold; font-family: "mySymbols";
  background-color: white; 
  padding:0.2ex; 
  border-radius: 0.2em;
  border: 2px solid #3a3a3a;}

/*span {
  overflow-x: scroll;
}*/






















/*-------------------------------------------------------------------------------------------------------------------------------------*/
/*THIS IS PRETTY HACKY AND WILL PROBABLY NEED TO BE CHANGED WHEN I UPDATE MATHJAX*/
/*MathJax Styling*/

/*TODO: Remove after testing    font-size: 1.2em !important;*/

.MathJax { color:hsl(193, 14%, 26%) !important; font-size: 1.0em !important;}
mjx-labels {color: #b58900 !important;}

/*.mjx-chtml {color:hsl(193, 14%, 26%) !important; font-size: 1.05em !important;}*/
.mjx-chtml { font-size: 1.05em !important;}
.mjx-label {color: #b58800 !important; }

@media screen and (max-width: 600px) {
  .column {
    .MathJax { color:hsl(193, 14%, 26%) !important; font-size: 1.4em !important;}
    .mjx-chtml {color:hsl(193, 14%, 26%) !important; font-size: 1.4em! important;}
  }
}