/* For Smaller Screens */
.z-1200 {
    display: none;
}
  
.z-1100 {
    display: block;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
  
@media (min-width: 1200px) {
    .z-1100 { display: none; }
    /* For Bigger Screens */
    .z-1200 {
        display: block;;
    }

    .z-main-background { 
        z-index: -2;
        height: 100vh;
        display: flex;
        position: relative;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        background-image: linear-gradient(#58582c, #a7a470);
    }

    .z-bad-mountain {
        /* Bad Mountain Image */
        z-index: 0;
        width: 950px;
        position: absolute;
    }

    .z-floating {
        /* Wave Effect */
        z-index: -1;
        bottom: 0;
        position: absolute;
        animation-name: floating;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    .z-wave {
        /* Dirty wave */
        width: 100%;
        height: 400px;
        background-image: linear-gradient(#777345, #a8a571);
    }

    .z-water-garbage {
        /* Garbage bottom of mountain */
        width: 1000px;
        top: 220px;
        position: relative;
    }

    @keyframes floating {
        from { transform: translate(0,  0px); }
        65%  { transform: translate(0, 15px); }
        to   { transform: translate(0, -0px); }    
    }

    .z-tooltip {
        /* Text at top left of mountain */
        top: 10%;
        right: 60%;
        z-index: 10;
        color: white;
        position: absolute;
    }

    .z-tooltip p {
        /* Text at top left of mountain */
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        letter-spacing: 2px;
        font-family: Maiah-Regular;
    }

    .z-info {
        font-size: 13px !important;
    }
    
}


.sound-on, .sound-off, .control-container{
	position: absolute;
    top: 90%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.skip {
    cursor: pointer;
    text-decoration: none;
}

.play-intro {
	text-transform: uppercase;
}

.music, .play-intro {
    display:inline-block;
    vertical-align: middle;
}

.music a {
    color:#fff;
    font-size: 16px;
    text-decoration: none;
}

#toggleMusic {
    display: inline-flex;
    align-items: center;
}

#toggleMusic {
    margin-right: 5px;
}

.music-text{
    font-size: 14px;
    margin-left: 10px;
    font-weight: bold;
    text-transform: uppercase;
}