a {
    color: rgb(125, 125, 125);
}

a:hover {
    color: rgb(255, 255, 255);
}

b {
    color: rgb(255, 255, 255);
}

body {
    background-color: rgb(10, 10, 10);
    color: rgb(245, 245, 245);
    font-family: Times New Roman, serif;
}

h1 {
    color: rgb(255, 255, 255);
}

h2 {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-align: left;
    line-height: 2px;
    margin-top: 1em;
    margin-left: 2%;
}

h3 {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-align: left;
    margin-bottom: .5em;
}

h4 {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
    margin-top: .3em;
    margin-bottom: .1em;
    margin-left: 1.75%;
}

ol, ul {
    font-size: 18px;
    margin-top: 0px;
}

table, th, td {
    border: 2px solid black;
    border-collapse: collapse;
    padding: 5px;
    margin-bottom: 15px;
    margin-top: 15px;
    max-width: 750px;
    margin: auto;
}

th {
    text-decoration: bold;
    color: rgb(255, 255, 255);
}

tr:nth-child(even) {
    background-color: rgb(40, 40, 40);
}

p {
    text-indent: 45px;
    text-align: left;
    font-size: 18px;
    margin: 3px 0px;
}

.rules {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 70px;
}


/*Button Stuff*/
.collapsible {
    background-color: rgb(45, 45, 45);
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 10px;
    margin-top: 15px;
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: bold;
}

.collapsible:active {
    background-color: rgb(60, 60, 60);
}

.collapsible:hover {
    background-color: rgb(60, 60, 60);
}

.content {
    margin-bottom: 15px;
    margin-left: 5%;
    margin-right: 5%;
    line-height: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    width: auto;
    text-align: left;
    font-size: 16px;
    padding: 0 15px;
    color: rgb(245, 245, 245);
    background-color: rgb(30, 30, 30);
}

.grid {
    background-color: rgb(45, 45, 45);
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: bold;
}

.grid:active {
    background-color: rgb(60, 60, 60);
}   

.grid:hover {
    background-color: rgb(60, 60, 60);
}

.gridtent {
    line-height: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    width: auto;
    text-align: left;
    font-size: 15px;
    color: rgb(230, 230, 230);
    background-color: rgb(30, 30, 30);
}


/*Grid stuff*/
.column {
    float: left;
    width: 27%;
    margin-left: 3.16%;
    margin-right: 3.16%;
}

.spellcolumnleft {
    float: left;
    width: 24%;
    margin-left: 10%;
    margin-right: 1.5%;
}

.spellcolumncenter {
    float: left;
    width: 24%;
    margin-left: 1.5%;
    margin-right: 1.5%;
}

.spellcolumnright {
    float: left;
    width: 24%;
    margin-left: 1.5%;
    margin-right: 10%;
}

.tablecolumnleft {
    float: left;
    width: 44%;
    margin-left: 4%;
}
.tablecolumnright {
    float: right;
    width: 44%;
    margin-right: 4%;
}

.row {
    margin-top: 15px;
    margin-bottom: 30px;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

/*Sitenav Stuff*/
.topnav {
    position: fixed;
    top: 0;
    width: 100.5%;
    margin-left: -14px;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
}

.topnav a, .topnav span {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
    cursor: pointer;
}

.topnav a:hover, .topnav span:hover {
    background-color: white;
    color: black;
}

.topnavleft {
    position: absolute;
    top: 60%;
    left: 3.5%;
    transform: translate(-50%, -50%);
}

.topnavcenterleft a {
    float: none;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.topnavcenter a {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.topnavcenterright a {
    float: none;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.topnavright {
    float: right;
}

@media screen and (max-width: 600px) {
    .topnav a, .topnavright {
        float: none;
        display: block;
    }

    .topnavcenter a {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}

.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #000; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.25s; /* 0.25 second transition effect to slide in the sidenav */
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: rgb(200, 200, 200);
    display: block;
    transition: 0.25s;
}

.sidenav a.active {
    background-color: white;
    color: black;
}

.sidenav a:hover {
    /*background-color: rgb(50, 50, 50);*/
    color: rgb(100, 100, 100);
}

.sidenav .closebtn {
    position: absolute;
    top: 8px;
    font-size: 24px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}