
/* Base Styles
-------------------------------------------------------------------- */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
*,::after,::before {
    box-sizing: inherit
}
html {
    font-size: 62.5%;
}

body {
    font-size: 1.5em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Raleway', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #222;
}
#app{
    max-width: 800px;
    margin: 0 auto;
}
.square {
    width: 300px;
    height: 130px;
    border-radius: 10px;
    padding: 1rem;
    margin: 0 auto;
}
.sticky {
    position: sticky;
    bottom: 0;
    background-color: white;
}
.dark .sticky{
    background-color: #191216;
}
/* Typography
-------------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
    color: inherit;
    font-weight: 500;
    line-height: 0.8em;
    margin-bottom: .8em;
    margin-top: 0;
}

.h1,.h2,.h3,.h4,.h5,.h6 {
    font-weight: 500
}

.h1,h1 {
    font-size: 2rem;
}

.h2,h2 {
    font-size: 1.6rem
}

.h3,h3 {
    font-size: 1.4rem
}

.h4,h4 {
    font-size: 1.2rem
}

.h5,h5 {
    font-size: 1rem
}

.h6,h6 {
    font-size: .8rem
}

p {
    margin: 0 0 1.2rem
}

a {
    color: #5755d9;
    outline: 0;
    text-decoration: none
}

a:focus {
    box-shadow: 0 0 0 .1rem rgba(87,85,217,.2)
}

a.active,a:active,a:focus,a:hover {
    color: #302ecd;
    text-decoration: underline
}

a:visited {
    color: #807fe2
}

a,ins,u {
    -webkit-text-decoration-skip: ink edges;
    text-decoration-skip: ink edges
}

abbr[title] {
    border-bottom: .05rem dotted;
    cursor: help;
    text-decoration: none
}

kbd {
    background: #303742;
    border-radius: .1rem;
    color: #fff;
    font-size: .7rem;
    line-height: 1.25;
    padding: .1rem .2rem
}

mark {
    background: #ffe9b3;
    border-bottom: .05rem solid #ffd367;
    border-radius: .1rem;
    color: #3b4351;
    padding: .05rem .1rem 0
}

blockquote {
    border-left: .1rem solid #dadee4;
    margin-left: 0;
    padding: .4rem .8rem
}

blockquote p:last-child {
    margin-bottom: 0
}

ol,ul {
    margin: .8rem 0 .8rem .8rem;
    padding: 0
}

ol ol,ol ul,ul ol,ul ul {
    margin: .8rem 0 .8rem .8rem
}

ol li,ul li {
    margin-top: .4rem
}

ul {
    list-style: disc inside
}

ul ul {
    list-style-type: circle
}

ol {
    list-style: decimal inside
}

ol ol {
    list-style-type: lower-alpha
}

dl dt {
    font-weight: 700
}

dl dd {
    margin: .4rem 0 .8rem 0
}
strong{display: inline-block;}
/* Tables
-------------------------------------------------------------------- */
table, .table {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
    width: 100%;
    margin: 1rem 0;
}

table tbody tr:nth-of-type(odd), .table.table-striped tbody tr:nth-of-type(odd) {
    background: #f7f8f9
}

.table tbody tr.active,.table.table-striped tbody tr.active {
    background: #eef0f3
}

table tbody tr:hover, .table.table-hover tbody tr:hover {
    background: #eef0f3
}

.table.table-scroll {
    display: block;
    overflow-x: auto;
    padding-bottom: .75rem;
    white-space: nowrap
}

table td, table th, .table td,.table th {
    border: .05rem solid #dadee4;
    padding: .6rem .4rem
}

table th, .table th {
    border-bottom-width: .1rem;
}

/* Forms
-------------------------------------------------------------------- */
input[type='email'], input[type='number'], input[type='search'], input[type='text'], input[type='tel'], input[type='url'], input[type='password'], textarea, select {
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type='email'], input[type='number'], input[type='search'], input[type='text'], input[type='tel'], input[type='url'], input[type='password'], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type='email']:focus, input[type='number']:focus, input[type='search']:focus, input[type='text']:focus, input[type='tel']:focus, input[type='url']:focus, input[type='password']:focus, textarea:focus, select:focus {
    border: 1px solid #33c3f0;
    outline: 0;
}

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

fieldset {
    padding: 0;
    border-width: 0;
}

input[type='checkbox'], input[type='radio'] {
    display: inline;
}

label > .label-body {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: normal;
}

/* Buttons
-------------------------------------------------------------------- */
.button, button, input[type='submit'], input[type='reset'], input[type='button'] {
    display: inline-block;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}
button.btn:hover {
    border-color: #00fbff;
}

button.btn {
    border: 1px solid transparent;
}
.button:hover, button:hover, input[type='submit']:hover, input[type='reset']:hover, input[type='button']:hover, .button:focus, button:focus, input[type='submit']:focus, input[type='reset']:focus, input[type='button']:focus {
    color: #333;
    border-color: #888;
    outline: 0;
}

.button.button-primary, button.button-primary, input[type='submit'].button-primary, input[type='reset'].button-primary, input[type='button'].button-primary {
    color: #fff;
    background-color: #33c3f0;
    border-color: #33c3f0;
}

.button.button-primary:hover, button.button-primary:hover, input[type='submit'].button-primary:hover, input[type='reset'].button-primary:hover, input[type='button'].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type='submit'].button-primary:focus, input[type='reset'].button-primary:focus, input[type='button'].button-primary:focus {
    color: #fff;
    background-color: #1eaedb;
    border-color: #1eaedb;
}
.light .danger{background-color: #fdbaba!important;}

/* Code */
code {
    padding: 0.2rem 0.5rem;
    margin: 0 0.2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #f1f1f1;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
  }
  pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
  }

li.some-thing {
    padding: 12px;
    list-style: none;
    border: 1px solid;
    margin-bottom: 12px;
}

ol.sublist {
    min-height: 12px;
    background-color: #807fe2;
}

li.list-item {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}

/* Demo styles */
.red{color: rgb(255, 0, 230);}
.blue{color: rgb(17, 171, 242);}
.highlight{background-color: #00fbff; color: black; padding: 3px 5px;}
/* Dark mode */

body.dark {
    background: #231a21;
    color: #c8b6ce;
}

.dark table td, table th, .table td, .table th {
    border-color: #191216;
}

.dark table tbody tr:nth-of-type(odd), 
.dark .table.table-striped tbody tr:nth-of-type(odd){
    background-color:#4d2f44;
}
.dark table tbody tr:hover, 
.dark .table.table-hover tbody tr:hover {
    background: #b05394
}
.dark button {
    background-color: #331d2f;
    border-color: transparent;
    color: #b5d2ec;
    margin: .3em
}

/* Light mode */

body.light {
    background: #f8f8f8;
    color: #362d39;
}

.light table td, table th, .table td, .table th {
    border-color: #b7b7b7;
}

.light table tbody tr:nth-of-type(odd), 
.light .table.table-striped tbody tr:nth-of-type(odd){
    background-color:#e0e0e0;
}
.light table tbody tr:hover, 
.light .table.table-hover tbody tr:hover {
    background: #c6e7d0
}
.light button {
    background-color: #ffffff;
    border-color: transparent;
    color: #556777;
    margin: .3em
}
.light .square{
    background-color: #434a40;
    color: #e0dfa8;
}