/* 

CSS RESET

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	width:100%;
	
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 

CSS

*/

body {
    width: 100%;
    height: 100vh;
    font-size: 100%;
    overflow: hidden;
}

#sitewrapper, #loader {
    position: absolute;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    margin: 50px;
    background-color: white;
    transition-property: opacity;
}

#sitewrapper {
    opacity: 0;
    transition-duration: 1s;
    margin-top: 0;
}

#loader {
    background-image: url(img/loader-3.gif);
    background-position: top left;
    background-size: contain;  
    background-repeat: no-repeat;
}

#photowrapper1, #photowrapper2 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

#left1, #right1, #left2, #right2  {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;  
}

#left1, #left2 {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
    margin: 0;
    background-image: url(img/mixup-1-10.jpg);
    background-position: center left;
}

#right1, #right2 {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
    margin: 0;
    background-image: url(img/mixup-1-1.jpg); 
    background-position: center right;
}

.title {
    position: relative;
    z-index: 1;
    margin: 17px 0;
    height: 16px;
}

.mixup {
    cursor: ew-resize;
}

h1, h2 {
    font-family: 'Cutive Mono', monospace;
    text-align: left;
    background-color: #FFF;
    background-color: rgba(255, 255, 255, 0.5)
    font-size: 1em;
    //text-decoration: underline;
}

@media only screen and (max-width: 750px) and (orientation: portrait) {
    body {
        font-size: 75%;
    }
	#sitewrapper, #loader {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px;
    }
    #photowrapper1, #photowrapper2 {
        transform: translate(-27.5%, 20px);
    }
}
@media only screen and (max-width: 750px) and (orientation: landscape) {
    body {
        font-size: 75%;
    }
	#sitewrapper, #loader {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px;
    }
    #photowrapper1, #photowrapper2 {
        transform: translate(-20px, -18%);
    }
}