body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}



#back-button {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 11;

    -webkit-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);
    -moz-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);
    box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);

    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

#sound-button {
    position: absolute;
    left: 10px;
    top: 10px;

    -webkit-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);
    -moz-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);
    box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);

    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;

    opacity: 0;
    display: none;
    cursor: pointer;
    z-index: 12;
}

#sound-button-off {
    position: absolute;
    left: 10px;
    top: 10px;

    -webkit-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);
    -moz-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);
    box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.49);

    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;

    opacity: 0;
    display: none;
    cursor: pointer;
    z-index: 13;
}


#sb-button {
    float: left;
    line-height: 70px;
    font-family: 'Baloo Bhaina', cursive;
    color: #ffffff;
    font-size: 35px;
    background-color: #00ccff;
    position: absolute;
    bottom: 20px;
    padding: 0px;
    margin: 0px;
    left: 200px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 90%;

    

    text-shadow:2px 2px 0px #0099bf;


    -webkit-box-shadow: 4px 4px 0px 0px rgba(0,221,255,1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0,221,255,1);
    box-shadow: 4px 4px 0px 0px rgba(0,221,255,1);

    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 0px solid rgba(0,221,255,1);

    cursor: pointer;
}


div#items-wrapper {
    position: absolute;
    overflow: hidden;
    z-index: 2;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: pink;
}

#items-container {
    position: absolute;
    transform-origin: center center;
    ms-transform-origin: center center;
    overflow: hidden;
    width: 1400px;
    height: 916px;
    left: 50%;
    top: 50%;
    
}

.item {
    position: absolute;
    cursor: pointer;
}

#preloader-container {
    background-color: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

img#preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
}



div#page-container {
    float: left;
    min-width: 100%;
    padding-top: 70px;
    background-color: #ffffff;
}

div#text-container {
    width: 60%;
    float: right;
    padding-left: 5%;
    padding-right: 5%;
}

#page-content-header {
    margin-top: 0px;
    font-size: 30px;
}

#page-content-text {
    margin-top: 0px;
    font-size: 20px;
}


div#image-container {
    float: left;
    min-height: 100%;
    width: 27%;
    text-align: right;
    margin-left: 3%;
}

img.page-image {
    max-width: 100%;
}


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

    div#image-container {
        float: left;
        min-height: 0%;
        width: 90%;
        text-align: center;
        margin-left: 5%;
        margin-right: 5%;
    }

    div#text-container {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
    }

    #page-content-header, #page-content-header {
        margin-top: 20px;
    }

}