

.container{
    margin:0px auto 15px;
    background-color:#fff;
    font:16px normal;
    font-family: "Lekton", monospace;
    font-weight: 400;
    font-style: normal;
    padding-right:20px;
    padding-left:20px;
    border:1px solid black;
    z-index: 1;
    flex: 1;
    border: 1px solid #000;
    margin:0px auto 15px;
    min-width:440px;
}
.sidebar{
    flex: 4;
    margin:0px auto 15px;
}

/* Flex DIV that houses entire page and creates columns */
.flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
body{
    background-color:#F5F5F5;
}

.header {
    width:100%;
    padding-bottom: 10px;
    margin-top: -10px;
    text-align:center;
    margin-left: auto;
    margin-right: auto;
    z-index:1;

}
.header img{
    max-width: 100%;
    border:1px solid black;
}

h1{
    text-align:center;
}

h1 span{
    font:12px normal;
    margin-top:-2px;
    display: block;
    font-weight:500;
}

nav{
    top:0;
    z-index:1;
    position:sticky;
    margin-bottom:5px;
    font-size:18px;
    text-align:center;
}

a, a:visited{
    text-decoration: none;
    color: #fc74bf;
}

footer{
    text-align:center;
    margin-top:15px;
    text-shadow: 1px 1px 3px #fc74bf;
    color: #fc74bf;
    padding-bottom:10px;
}

code{
    padding:5px;
    display:block;
    margin-left:20px;
    margin-right:20px;
    background:#F0F0F0;
    border:1px dashed black;
    overflow-x:scroll;
    font-size:12px;
}

table{
    width: 100%;
    table-layout:fixed;
}

th{
    font-weight:600;
}

td{
    padding-bottom: 10px
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

tr{
text-align:left;
}


hr.solid {
    border-top: none;
    border-bottom: 1px solid #000;
}

hr.dashed {
    border-top: none;
    border-bottom: 1px dashed #000;
}

.mascot {
    position:fixed;
    bottom: -1%;
    z-index:-2;
}
/* change this to increase mascot size */
.mascot img {
    max-width: 160px;
}

@media only screen and (max-width: 550px) {
    .container {
        min-width:80vw;
    }
    .mascot img {
        display: none;
    }
    table{
        table-layout: auto;
    }
}
.hover-container {
    position: relative; /* Needed for positioning the superscript */
    display: inline-block; /* Allows the container to wrap around its content */
}

.hover-container .superscript-on-hover {
    display: none; /* Hidden by default */
    position: absolute; /* Position relative to the container */
    top: -0.5em; /* Adjust vertical position as needed */
    left: 100%; /* Position to the right of the main text */
    font-size: 2em; /* Smaller font size for superscript */
    white-space: nowrap; /* Prevent line breaks in superscript */
    background-color: #fff;
    border: solid black 1px;
    padding: 5px;
}

sup{
    font-size: 0.8em;
}

.hover-container:hover .superscript-on-hover {
    display: inline; /* Show on hover */
}
