@font-face {
    font-family: 'Open Sans';
    src: url('../../img/OpenSans.ttf');
}

body {
	margin:0px;
	width:100%;
	height:100%;
	background-color:#424242;
	background-repeat:no-repeat;
	background-size:cover;
	font-family:'Open Sans', sans-serif;
	font-size:13px;
	color:#fff;
}

#canvas-container {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:#fff;
	overflow:hidden;
	color:#000;
}

div.roh {
	position:absolute;
	top:50%;
	left:30%;
	width:40%;
	height:70%;
	background-repeat:no-repeat;
	background-size:contain;
	transform:translate(-50%, -50%);
	transition:opacity 1s;
}

#roh {
	opacity:0;
	background-image:url('img/roh.png');
	z-index:2;
}

#roh-light {
	opacity:0;
	background-image:url('img/roh-light.png');
	z-index:3;
}

#roh-backlight {
	width:60%;
	height:90%;
	opacity:0;
	background-image:url('img/roh-backlight.png');
	z-index:1;
}

#glass {
	position:absolute;
	top:50%;
	right:20%;
	width:120px;
	height:426px;
	background-image:url('img/glass.png');
	background-repeat:no-repeat;
	background-size:contain;
	opacity:0;
	transform:translateY(-50%);
	transition:opacity 1s;
}

div.glass-piece {
	display:none;
	position:absolute;
	background-repeat:no-repeat;
	background-size:contain;
	transition:top 0.3s, left 0.3s, transform 0.3s;
}

#glass-piece-0 {
	width:39px;
	height:93px;
	background-image:url('img/piece0.png');
}

#glass-piece-1 {
	width:104px;
	height:109px;
	background-image:url('img/piece1.png');
}

#glass-piece-2 {
	width:62px;
	height:38px;
	background-image:url('img/piece2.png');
}

#glass-piece-3 {
	width:93px;
	height:41px;
	background-image:url('img/piece3.png');
}

#glass-piece-4 {
	width:86px;
	height:63px;
	background-image:url('img/piece4.png');
}

#glass-piece-5 {
	width:88px;
	height:26px;
	background-image:url('img/piece5.png');
}

#glass-piece-6 {
	width:48px;
	height:70px;
	background-image:url('img/piece6.png');
}

#glass-piece-7 {
	width:53px;
	height:53px;
	background-image:url('img/piece7.png');
}

#glass-piece-8 {
	width:25px;
	height:89px;
	background-image:url('img/piece8.png');
}

#champagne {
	position:absolute;
	top:55px;
	left:1px;
	width:115px;
	height:158px;
	background-image:url('img/champagne.png');
	background-repeat:no-repeat;
	background-size:contain;
	opacity:0;
	transition:opacity 1s;
}

#text-container {
	position:absolute;
	z-index:9;
	width:30%;
	text-align:center;
	transform:translate(-50%, -50%);
	transition:opacity 0.8s, left 1s;
}

#text-container img {
	max-width:100%;
	max-height:100px;
}

#read-more {
	display:none;
	position:absolute;
	bottom:100px;
	right:100px;
	z-index:10;
	padding:10px;
	background-color:rgba(0,0,0,0.1);
	opacity:0;
	color:#424242;
	transition:opacity 2s;
}

#read-more a {
	color:#8a8a8a;
	text-decoration:none;
	border-style:solid;
	border-color:#2071a6;
	border-width:0px;
}

#read-more a:hover {
	text-decoration:none;
	border-width:0px 0px 1px 0px;
}

@keyframes shake {
	0% { transform: translate(1px, 1px); }
	20% { transform: translate(-1px, 0px); }
	40% { transform: translate(1px, -1px); }
	60% { transform: translate(0px, 1px); }
	80% { transform: translate(-1px, -1px); }
	100% { transform: translate(1px, 1px); }
}

@-webkit-keyframes shake {
	0% { -webkit-transform: translate(1px, 1px); }
	20% { -webkit-transform: translate(-1px, 0px); }
	40% { -webkit-transform: translate(1px, -1px); }
	60% { -webkit-transform: translate(0px, 1px); }
	80% { -webkit-transform: translate(-1px, -1px); }
	100% { -webkit-transform: translate(1px, 1px); }
}