:root {
    --bg-color: #fff;
    --text-color: #000;
    --header: #d9ead3;
}

body {
    height: 100%;
    min-height: 750px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial;
    font-weight: bold;
}

.title {
    font-size: 3em;
    height: 60px;
}

.subtitle {
    font-weight: normal;
    height: 20px;
    width: 540px;
    display: flex;
    justify-content: space-between;
}

.subtitle a {
    color: var(--text-color);
    text-decoration: none;
}

.subtitle i {
    font-style: normal;
}

/*TABLE OF DATES & TIMES*/

#datetable {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
}

.date {
    border: 1px solid var(--text-color);
    width: 100px;
    text-align: center;
}

.date:first-of-type {
    margin-left: 20px;
}

.tba {
    background-color: #aaaaaa;
}

.highlight {
    border-top: 6px solid var(--text-color);
    border-bottom: 6px solid var(--text-color);
}

table {
	display: table;
    border: 1px solid var(--text-color);
    text-align: center;
    border-spacing: 0;
    table-layout: fixed;
    font-weight: bold;
}

table tr {
	display: table-cell;
    min-width: 100px;
    width: 100px;
    border: 1px solid var(--text-color);
}

table tr td {
	display: block;
}

th {
    display: flex;
    height: 80px;
    background-color: var(--header);
    justify-content: center;
    align-items: flex-end;
    white-space: normal;
    overflow: hidden;
    word-wrap: break-word;
}

.divider, .links {
    border-bottom: 1px solid var(--text-color);
}

.links {
    min-height: 20px;
    background-color: var(--header);
}

.links a {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 1px;
    background-size: contain;
}

.youtube {
    background-image: url(youtube.png);
}

.twitch {
    background-image: url(twitch.png);
}

.tiktok {
    background-image: url(tiktok.png);
}

.sitelink {
    background-image: url(link.png);
}

/*TOGGLE BUTTONS*/

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    vertical-align: bottom;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 10px;
  }
  
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--bg-color);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 8px;
}

#darkmode + .slider:before {
    background: url(light.png) no-repeat center;
}

#darkmode:checked + .slider:before {
    background: url(dark.png) no-repeat center;
}
  
input:checked + .slider {
    background-color: #2196F3;
}
  
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}