

body {
	position: relative;
	margin: 0;
}
*, *:before, *:after {
	box-sizing: border-box;
}

.start-button {
	position: fixed;
	left: 577px;
	top: 297px;
	pointer-events: none;
}

.hide {
	display: none;
}

.video {
	position: absolute;
	left: 214px;
	top: 120px;
	width: 852px;
	height: 479px;
	background-image: url("../assets/livingroom.png");
}

.video.home {
	background-image: url("../assets/livingroom.png");
}
.video.piano {
	background-image: url("../assets/livingroom.png");
}
.video.floor {
	background-image: url("../assets/livingroom.png");
}
.video.chair {
	background-image: url("../assets/livingroom.png");
}
.video.sofa {
	background-image: url("../assets/livingroom.png");
}


.title {
	position: absolute;
	left: 35px;
	top: 50px;
	pointer-events: none;
	/*width: 120px;*/
	/*height: 120px;*/
}

.slideshow {
	position: absolute;
	left: 1070px;
	top: 120px;
	pointer-events: none;
	width: 190px;
	height: 479px;
}
.back, .next {
	top: 290px;
}
.back {
	position: absolute;
	display: inline-block;
	right: 166px;
	width: 50px;
	height: 50px;
	background-image: url("../assets/arrow-left.png");
	background-position: center;
	background-repeat: no-repeat;
}
.next {
	position: absolute;
	display: inline-block;
	right:	0px;
	width: 50px;
	height: 50px;
	background-image: url("../assets/arrow-right.png");
	background-position: center;
	background-repeat: no-repeat;
}
.back.show, .next.show {
	display: inline-block;
}

.image1, .image2 {
	position: absolute;
	left: 1081px;
	top: 120px;
	opacity: 0;
	transition: opacity 0.8s;
	width: 180px;
}
.image1.show, .image2.show {
	opacity: 1.0;
}

.game-button {
	position: fixed;
	left: 52px;
	top: 560px;
}

.connect-button {
	position: absolute;
	left: 1100px;
	top: 560px;
}
.connect-page {
	position: absolute;
	display: none;
	left: 214px;
	top: 119px;
	width: 852px;
}
.connect-page.show {
	display: inline-block;
}



.button {
	position: relative;
	z-index: 100;
	overflow: hidden;
	display: inline-block;
	color: #fff;
	background-color: #438BDF;
	padding: 16px 32px;
	font-size: 24px;
	outline: 0;
	border: 0;
	border-radius: 6px;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3); /* black with 30% opacity */
	cursor: pointer;
	margin: 30px;
}

.ripple-animate {
	transition: background 400ms;
}

span.body-ripple {
	position: fixed;
	border-radius: 50%;
	transform: scale(0);
	animation: ripple 300ms linear;
	background-color: rgba(240, 240, 240, 0.7);
}

span.ripple-animate {
	position: absolute;
	border-radius: 50%;
	transform: scale(0);
	animation: ripple 600ms linear;
	background-color: rgba(255, 255, 255, 0.7);
}


.button.play {
	position:	absolute;
	left: 50px;
	top: 50px;
}

.button.pause {
	position: absolute;
	left: 150px;
	top: 50px;
}

.button.restart {
	position: absolute;
	left: 250px;
	top: 50px;
}




@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

