* {
    box-sizing: border-box;    
    text-shadow: none;
}

canvas 
{ 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    max-width: 100%;
    z-index: -1;
    
    filter: none;
    -webkit-transition: filter 0.2s ease-in-out;
    -moz-transition: filter 0.2s ease-in-out;
    -o-transition: filter 0.2s ease-in-out;
    transition: filter 0.2s ease-in-out;
}

.coverDiv
{
    background-color: #000;
    background-image: none;
    -webkit-filter: none;
    filter: none;
    
    opacity: 0;
    z-index:  -100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    
    -webkit-transition: opacity 0.3s ease, background 0.3s ease, filter 0.3s ease;
    -moz-transition: opacity 0.3s ease, background 0.3s ease, filter 0.3s ease;
    -o-transition: opacity 0.3s ease, background 0.3s ease, filter 0.3s ease;
    transition: opacity 0.3s ease, background 0.3s ease, filter 0.3s ease;  
    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center; 
}

.coverDiv.showing
{
    opacity: 1.0;
}

.wow
{
    opacity: 0.0;
}


html, body 
{
    width:  100%;
    height: 100%;
    margin: 0px;
    font-family: 'Barlow Condensed', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    
}

body
{    
    background: #000;
    
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.noselect {
  -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 */
}

.nopadding
{
    padding: 0;
    margin: 0;
}

.fadedContent
{
    opacity: 0;
    
    -webkit-transition: opacity 0.75s ease;
    -moz-transition: opacity 0.75s ease;
    -o-transition: opacity 0.75s ease;
    transition: opacity 0.75s ease;
}

.fadedContent.showing
{
    opacity: 1.0;
    
    -webkit-transition: opacity 0.75s ease;
    -moz-transition: opacity 0.75s ease;
    -o-transition: opacity 0.75s ease;
    transition: opacity 0.75s ease;
}

#main
{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#contentHolder
{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
    position: fixed;
}

.normalCursor
{
    cursor: default;
}

img 
{
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

img.button_control
{
    transition: none;
}

img[data-src] 
{
	opacity: 0;
}