/**************************************************************************
                                Global Styles
                                
New Pallete Colors:

***************************************************************************/

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialised;
    -moz-osx-font-smoothing: greyscale;
}

body {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: Arial, Helvetica, sans-serif 
    font-weight: 400;
    color: #000;
    background-color: #ffffff;
}

div, section {
    position:relative;
}

#slideshow-container{
    z-index: 1;
}

.img-cont {
    width: 100%;
    height: 100vh;
    background-color:#000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-cont img {
    position: absolute;
    height:100vh;
    width: auto;
    display:none;
}

.img-cont img:first-child {
    display:inline;
}

#audio-player {
    display: none;
}

#intro {
    position:absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color:rgba(0,0,0,.8);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    transition: all .7s;
}

.play-show #intro{
    opacity: 0;
}

.intro-copy {
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity .5s;
}

.intro-copy:hover {
    opacity:.7;
}

.intro-copy p {
    font-size: 1.8rem;
    margin: 0;
}

.intro-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}

.intro-copy h1 span {
    display: block;
    font-size: 4rem;
}


.music-credits {
    font-size: 1rem;
    position: fixed;
    bottom: 10px;
    right: 10px;
    color:#ffffff;
    z-index:200;
}





