@font-face {
    font-family:"Courier-New";
    src:url("../fonts/Courier-New.woff2") format("woff2"),url("../fonts/Courier-New.woff") format("woff"),url("../fonts/Courier-New.otf") format("opentype");
    font-style:normal;font-weight:400;
}


@font-face {
    font-family:"Brian-Strait";
    src:url("../fonts/Brian-Strait.woff2") format("woff2"),url("../fonts/Brian-Strait.woff") format("woff"),url("../fonts/Brian-Strait.otf") format("opentype");
    font-style:normal;font-weight:400;
}


@font-face {
    font-family:"dennis6e";
    src:url("../fonts/dennis6e.woff2") format("woff2"),url("../fonts/dennis6e.woff") format("woff"),url("../fonts/dennis6e.otf") format("opentype");
    font-style:normal;font-weight:400;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

html, body {
    height: 100%;
    width: 100%;
}

body {
  opacity: 1;
  transition: opacity 0.7s;
}

body.fade {
    opacity: 0;
}

main {
    position: fixed;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    z-index: 1;
    transition: background-color 0.5s;
}


/*  TEXT STYLES */

h1 {
    font: normal 12vw/1 'Brian-Strait', 'Courier-New', courier, mono;
    -webkit-font-smoothing: antialiased;
}

h2 {
    font: normal 8vw/1 'Brian-Strait', 'Courier-New', courier, mono;
    transform: rotate(-6deg);
}

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

p {
    font: normal 2.5vw/1.5 'Courier-New', courier, mono;
}

/*  PAGE STYLES */

section {
    opacity: 1;
    z-index: 1;
    transition: opacity 0.5s;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;

    /* following looks cool but is slow */
    /* need to add filter to transition for it to work */
    /* -webkit-filter: blur(0); */
    /* filter: blur(0); */
}

section.hidden {
    pointer-events: none;
    opacity: 0;
    z-index: -1;

    /* following looks cool but is slow */
    /* need to add filter to transition for it to work */
    /* -webkit-filter: blur(10px); */
    /* filter: blur(10px); */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 2%;
    z-index: 2;
}

#six {
    font: normal 5vw/1 'dennis6e', 'Courier-New', courier, mono;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

nav {
    position: fixed;
    width: 100%;
    padding: 2%;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    z-index: 2;
    align-items: flex-end;
}

nav h2 {
    line-height: .8;
}

.song-title {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 8%;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

h1 {
    position: relative;
    display: block;
    transform: rotate(-3deg);
}

.option span {
  position: relative;
  display: inline-block;
}

.option span::after,
.option span::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  top: 67%;
  margin-top: -2px;
  background: #000;
}

.option span::before {
  left: -2.5px;
}

.option span::after {
  right: 2.5px;
  background: #000;
}

.option:hover span:before {
  background: #000;
  width: 100%;
}

.option:hover span:after {
  background: transparent;
  width: 100%;
}

.p-hover.option span::after,
.p-hover.option span::before {
  top: 50%;
}

.tourCont {
    padding-top: 8%;
}

.tour {
    padding: 2.5%;
}

.row-item {
    display: grid;
    grid-template-columns: 15% 32% 40% 13%;
}

.right-align {
    text-align: right;
}

section#tour_sec {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10%;
}

section#about_sec {
    padding-left: 13%;
    padding-right: 13%;
    padding-bottom: 10%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.intro {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10%;
}

.intro p {
    text-align: center;
}

.about p {
    line-height: 1.2;
}

.footnote-right {
    font: normal 3.2vw/0.5 'Brian-Strait', 'Courier-New', courier, mono;
    right: 8px;
    position: absolute;
    width: 14%;
    transform: rotate(-6deg);
    padding: 1%;
}

#audioToggle {
    top: 0;
    text-align: center;
    z-index: 999;
    padding: 3% 0;
    cursor: pointer;
    position: fixed;
}

#credit {
    top: 0;
    text-align: center;
    margin-top: 5%;
}

.crossed span {
  position: relative;
  display: inline-block;
}

.crossed span::after,
.crossed span::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  top: 90%;
  margin-top: -2px;
  background: #000;
}

.crossed span::before {
  left: -2.5px;
}

.crossed span::after {
  right: 2.5px;
  background: #000;
}

.crossed span:before {
  background: #000;
  width: 100%;
}

.crossed span:after {
  background: transparent;
  width: 100%;
}

.footnote-right a:hover {
    border-bottom: 1px solid #000;
}

#album-popover {
    max-width: 25%;
}

#album-cover {
    visibility: hidden;
    opacity: 0;
    height: 0;
    text-align: center;
    transition: visibility 0s, height 0s, opacity 0.3s ease;
}

#album-cover img {
    width: 60%;
    border: 2px solid transparent;
}

#album-cover img:hover {
    border: 2px solid #000;
}

#album-popover:hover > #album-cover {
    visibility: visible;
    opacity: 1;
    height: auto;
}

#listen-options {
    visibility: hidden;
    width: auto;
    height: 0;
    opacity: 0;
    transition: visibility 0s, height 0s, opacity 0.3s ease;
    text-align: center;
}

#listen-options h2 {
    line-height: .6;
}

#listen-popover:hover > #listen-options {
    visibility: visible;
    opacity: 1;
    height: auto;
}

#listen-popover {
    text-align: center;
}

@media only screen and (min-width : 1800px) {


    .option span::after,
    .option span::before {
        height: 3px;
    }

    .crossed span::after,
    .crossed span::before {
        height: 2px;
    }

}

@media only screen and (max-width : 1150px) {
    .footnote-right {
        font-size: 5vw;
    }
}

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

    h1 {
        font-size: 24vw;
    }

    h2 {
        font-size: 18vw;
        text-align: right !important;
    }

    p {
        font-size: 5vw;
    }

    #six {
        font-size: 11vw;
    }

    h1:before, h1:after {
        height: 2px;
    }

    nav {
        flex-direction: column;
        padding: 0 6% 0;
        margin-bottom: 6%;
        right: 0;
        width: 65%;
    }

    .option span::after,
    .option span::before {
        height: 1px;
    }

    #listen-options h2 {
        line-height: .75;
    }

    #album-popover {
        min-width: 100%;
    }

    #album-cover {
        display: none;
    }

    .song-title {
        padding-bottom: 40%;
    }

    #listen-popover {
        order: -1;
    }

    section#tour_sec {
        padding: 10% 0;
    }

    .tour {
        padding-bottom: 60%;
    }

    .row-item {
        display: block;
        padding: 8% 0;
        border-bottom: 1px solid #000;
        text-align: left;
    }

    .right-align {
        text-align: left;
    }

    .right-align a {
        border-bottom: 1px solid #000;
    }

    section#about_sec {
        padding-top: 30%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .intro {
        height: auto;
        padding-bottom: 30%;
    }

    .footnote-right,
    .footnote-left {
        display: none;
    }

    #audioToggle {
        display: block;
        font-size: 10vw;
        width: 28%;
    }

}

.navButton:hover {
    cursor: pointer;
}


/************************** VIDEO STUFF ***************************************/

.videoCont {
    position: fixed;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}

video {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: -1;
}

.scrubBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 100;
}

.scrubBar:hover {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.scrubBar:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

.scrubBarLine {
    height: 100%;
    width: 2px;
    background-color: black;
    transition: all 0.2s ease;
}

.scrubBar:hover > .scrubBarLine {
    width: 5px;
}
