html {
    height: 100%;
    margin: 0;
}

body {
    width:100%;
    height:100%; 
    background-color: #222222; 
    color: white;
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    margin: 0;
    padding: 0;
    z-index: 0;
}

a:link {
    color: lightskyblue;
}

a:visited {
    color: lightskyblue;
}

a:hover {
    color: lightskyblue;
}

a:active {
    color: lightskyblue;
}

.box {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.header {
    width: 100%;
    background-color: #000000;
    flex: 0 1 auto;
}

.footer {
    flex: 0 1 auto;
    width: 100%;
    background-color: #000000;
}

.headfoottable {
    width: 100%;
}

.hftleft {
    text-align: left;
    width: 25%;
    padding-left: 8px;
    
}

.hftmid {
    text-align: center;
    width: 50%;
}

.hftright {
    text-align: right;
    width: 25%;
}

.content {
    flex: 1 1 auto;
    margin: 8px 8px 8px 8px;
}

.bandfont {
    font-family: BulletproofDecoBB;
    text-transform: uppercase;
}

.tourfont {
    font-family: Arial, Helvetica, sans-serif;
}

.outlined {
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.topthirdcell {
    width: 33%;
    vertical-align: top;
    text-align: center;
}

h1, h3 {
    text-align: center;
    margin: 0px;
}

/* Burger Menu */
div.burgermenu {
    position: absolute;
	padding: 8px;
	width: 240px;
	background: #222222;
	z-index: 10;
	font-size: 24pt; 
    text-transform: uppercase;
    
}

input.menuentry {
    display: none;
}

section {
    display: none;
}

input:checked ~ section {
    display: block;
}

.container {
	display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
	width: 35px;
	height: 5px;
	background-color: white;
	margin: 6px 0;
	transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
  transform: rotate(45deg) translate(-8px, -8px) ;
}

/* Non-main page text */
.abouttext {
    margin: 0px 128px;
    padding: 8px;
    background-color: black;
}

.abouttext::after {
    content: "";
    display: block;
    clear: both;
}

.recordtitle {
    text-align: center;
    font-size: 36pt;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 24px;
}

.recordtitle::before {
    content: "««« ";
}

.recordtitle::after {
    content: " »»»";
}

.rawrecordtitle {
    text-align: center;
    font-size: 36pt;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 24px;
}

.stafftitle {
    text-align: center;
    font-size: 24pt;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 16px;
}

/* Vox easter egg */
.vox1 {
    display: inline;
}

.vox2 {
    display: none;
}

.change .vox1 {
    display: none;
}

.change .vox2 {
    display: inline;
}

/* Blacklight easter egg */
.bl1 {
    display: inline;
}

.bl2 {
    display: none;
}

.change .bl1 {
    display: none;
}

.change .bl2 {
    display: inline;
}

/* Tabs */

.tabs-container {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin: 5px auto;

    >input[type="radio"] {
        display: none;

        &:checked+.tab-label {
            /* this is the active tab */
            background-color: darkblue;
        }
    }

    >input[type="radio"]:not(:checked)+.tab-label+.tab-content {
        /* hide inactive tabs */
        display: none;
    }

    .tab-label {
        padding: 5px 15px;
        margin: 2px;
        color: white;
        background-color: slategray;
        font-family: Arial, Helvetica, sans-serif;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    }

    .tab-content {
        order: 99;
    }
        
}

.tab-content {
    width: 100%;
    display: block;
    background: #303030;
    padding: 16px;
    font-size: 18pt;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    clear:both;
    
}

.artistname {
    font-size: 24pt;
    font-weight: bold;
}