        body,
        html {
            height: 100%;
            margin: 0px;
            padding: 0px;
            font-family: 'WindSong', cursive;
        }

        h3, p {
            margin: 0px;
            padding: 0px;
            font-family: 'Poiret One', sans-serif;
        }

        h3 {
            margin-bottom: 10px;;
        }

        .fullBG {
            background-image: url(reflections.jpg);
            height: 100%;
            width: 100%;
            margin: 0px;
            padding: 0px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        #sybrage {
            position: absolute;
            left: 20px;
            margin-top: 20px;
        }

        #player {
            position: absolute;
            right: 20px;
            margin-top: 20px;
        }

        #sybrage:hover {
            cursor: url('homeIcon.png'), pointer;
        }

        #player:hover {
            cursor: url('playIcon.png'), pointer;
        }

        #header {
            position: fixed;
            left: 20%;
            top: 20px;
            width: 60%;
            opacity: 0.5;
            text-align: center;
        }

        .footer {
            position: fixed;
            left: 0;
            bottom: 20px;
            width: 100%;
            color: slategrey;
            font-size: 10pt;
            text-align: center;
        }

        .hide {
            opacity: 0 !important;
        }

        #verses {
            width: 100%;
            overflow: hidden;
            opacity: 1;
            transition: opacity 1.5s;
        }

        #verseScroller {
            color: white;
            font-size: 40pt;
            text-align: center;
            cursor: url('stopIcon.png'), pointer;
        }

        .verseScroller {
            /* animation properties */
            -moz-transform: translateY(50%);
            -webkit-transform: translateY(50%);
            transform: translateY(50%);

            -moz-animation: scrollVerse 1s linear;
            -webkit-animation: scrollVerse 1s linear;
            animation: scrollVerse 1s linear;
        }

        @-moz-keyframes scrollVerse {
            from {
                -moz-transform: translateY(50%);
            }

            to {
                -moz-transform: translateY(-100%);
            }
        }

        @-webkit-keyframes scrollVerse {
            from {
                -webkit-transform: translateY(50%);
            }

            to {
                -webkit-transform: translateY(-100%);
            }
        }

        @keyframes scrollVerse {
            from {
                -moz-transform: translateY(50%);
                -webkit-transform: translateY(50%);
                transform: translateY(50%);
            }

            to {
                -moz-transform: translateY(-100%);
                -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
            }
        }

        .paused {
            -webkit-animation-play-state: paused !important;
            -moz-animation-play-state: paused !important;
            -o-animation-play-state: paused !important;
            animation-play-state: paused !important;
        }

        @media only screen and (max-device-width: 1200px) {
            #verseScroller {
                font-size: 30pt;
            }
        }

        @media only screen and (max-device-width: 900px) {
            #verseScroller {
                font-size: 25pt;
            }
        }

        @media only screen and (max-device-width: 700px) {
            #verseScroller {
                font-size: 20pt;
            }
        }
    