* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Code Pro', monospace;
    font-style: italic;
    color: rgba(10,10,10,1);
    width: 100vw;
    height: 100vh;
}

a {
    color: inherit; 
    text-decoration: inherit;
}

a:active {
    color: inherit; 
    text-decoration: inherit;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: inherit; 
    text-decoration: inherit;
}

.gigLink {
    color: rgb(255, 232, 0);
}

.gigLink:visited {
    color: rgb(255, 232, 0);
}

.gigVenue {
    color: rgb(204, 246, 0);
}

.gigVenue:hover {
    text-decoration: underline;
    cursor: pointer;
}

#socLinksNew {
    font-size: 2em;
    text-align: center;
    width: 100%;
}

#centerBoxWrap {
    padding: 1em 2em;
    width: 100vw;
}



#centerBoxWrap h1 {
    margin: 0 0 .5em 0; 
    padding: 0;
    font-weight: bold;
    font-style: italic;
    font-size: 3em;
    text-align: center;
}

#centerBox {
    max-width: 500px;
    width: 100%;
    height: 500px; 
    margin: 0 auto 20px auto;
    overflow: hidden;
    position: relative;
    /*outline: 1px solid rgba(0, 0, 0, 0.5);*/
    /*outline-offset: 10px;*/
    
}

#loadingSong {
    position: absolute;
    background: rgba(255,255,255,0.25);
    width: 100%;
    height: 100%;
    background-image: url('../img/spinner.gif');
    background-position: center;
    background-size: 5%;
    background-repeat: no-repeat;
    z-index: 999999;
    display: none;
}

#homeImg, #musicImg , #showsImg {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

#homeImg {
    background-image: url('../img/home-img.jpg');  
}

#musicImg {
    background-color: rgba(0,0,0,0.25);
    left: 500px;
}

#showsImg {
    background-color: rgba(0,0,0,0.5);
    right: 500px;
}

#shows {
    position: absolute;
    top: -500px;
    color: rgb(255,255,255);
    padding: 1em;
    font-size: 1.25em;
    z-index: 1;
    font-family: monospace;
}

#shows ul li {
    list-style: none;
}

#shows li {
    margin: 0 0 1em 0;
}



#songContainer {
    width: 100%;
    height: 100%;
    padding: 1em 0 0 0.5em;
    line-height: 1.5;
    letter-spacing: 15px;
    font-size: 2em;
    font-style: italic;
    position: absolute;
    color: rgb(255,255,255);
    top: 500px;
    overflow-x: auto;
}

#songContainer ul {
    list-style: none;
}

#songContainer li {
    cursor: pointer;
    line-height: 1;
    margin-bottom: 1em;
}

#contactForm {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    padding: 1em;
    position: absolute;
    color: rgb(255,255,255);
    top: 500px;
    text-align: center;
    z-index: 9999;
}

#contactForm h1 {
    font-size: 1.75em;
}

#contactForm #clsContactForm {
    position: absolute;
    top: 6px;
    right: 10px;
    line-height: 1;
    font-size: 2em;
    color: inherit;
    cursor: pointer;
}

#contactForm input, textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,1);
    border-radius: 4px;
    font-size: 1.25em;
    font-family: monospace;
    margin-bottom: 0.5em;
    padding: .4em;
    outline: none;
}

#contactForm input[type=submit] {
    width: auto;
    background: rgb(255, 255, 255);
    border-color: inherit;
    border-radius: 4px;
    text-align: center;
    color: rgb(0,0,0);
    cursor: pointer;
}

#contactForm textarea {
    height: 12em;
}

nav {
    max-width: 500px;
    margin: 0 auto;
    z-index: 9999;
}

nav ul {
  display: flex;
  font-size: 1.25em;
  justify-content: center;
  align-items: center;
}

nav ul li {
  flex-basis: 50%;
  list-style: none;
  text-align: center;
}


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}

#videoWrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    background: rgba(0,0,0,.95);
    display: none;
}

#videoPlayerContainer {
    position: absolute;
    top: 50%;    
}

#videoPlayerContainer video {
    width: 100%;
}

#videoCover {
    position: absolute;
    background: #fff;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
}

#clsVid {
    position: absolute;
    line-height: .5;
    font-size: 2em;
    top: 0;
    right: 0;
    cursor: pointer;
}

#fullScreen {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#fullScreen img {
    width: 100%;
}


@media screen and (max-width: 1025px) {

}

@media screen and (max-width: 500px) {
    body {
        font-size: 80%;
    }
    
    #songContainer {
        letter-spacing: 7px;
        /*padding: 10px;*/
    }
    
}

@media screen and (max-width: 375px) {
    body {
        font-size: 70%;
    }
        
}


@media screen and (max-width: 305px) {
    body {
        font-size: 60%;
    }
    
}
    