body, html {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: Arial;
    background: url(assets/unicorn.svg) center center no-repeat #000;
    background-size: contain;
}

html.no-background, html.no-background body {
    background-image: none;
}

.rainbow-text, a {
	background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
	background-size: 800% 800%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: rainbow 3s ease infinite;
    text-shadow: rgba(200, 200, 200, 0.1) 2px 2px 5px;
}

.rainbow-text.-rainbow-1 {
	animation: rainbow 2s ease infinite;
}

.rainbow-text.-rainbow-2 {
	animation: rainbow 2.5s ease infinite;
}

.rainbow-text.-rainbow-3 {
	animation: rainbow 4s ease infinite;
}

.rainbow-text.-rainbow-4 {
	animation: rainbow 5s ease infinite;
}

@keyframes rainbow {
	0%{background-position:0% 50%}
	50%{background-position:100% 25%}
	100%{background-position:0% 50%}
}

a {
    color: #2d2;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#logo {
    position: absolute;
}

.outer {
    overflow: auto;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 2rem;
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.3);
    padding: 1rem;
    box-sizing: border-box;
}

table {
    width: 100%;
}
th {
    text-align: left;
}

.container .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #ccc;
}

.container .section:last-child {
    border-bottom: none;
}

.center {
    text-align: center;
}

video {
    width: 60%;
}

.-videos > * {
    display: inline-block;
    max-width: 50%;
}

@media only screen and (max-width: 1000px) {
    .-videos > * {
        width: 100%;
    }
}

ul.gig-acts {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

ul.gig-acts li {
    display: inline-block;
    padding: 0 0.3rem;
    border-right: 1px solid #ccc;
}

ul.gig-acts li:first-child {
    padding-left: 0;
}

ul.gig-acts li:last-child {
    border-right: none;
}

.no-background body {
    text-align: center;
}

#unicorn {
    height: 100%;
    width: auto;
}

.youtube-external-info {
    background-color: rgba(150,30,0,0.8);
    padding: 42px;
    border: 2px solid;
}

.section.center h1 {
    text-align: left;
}
