body {
	background-color: #348feb;
	overflow: hidden;
}

#wrapper {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #030316;
	z-index: -2;
}


#puzzle {
	position: relative;
	top: 5%;
	margin: auto;
	background-color: #030316;
	display: none;
	z-index: -2;
}

.piece {

	position: absolute;
	background-color: #030316;
	overflow: hidden;
	border: 3px solid #030316;
	transition: top 700ms, left 700ms;
}

.fastpiece {
	transition: top 50ms, left 50ms;
}

.draggedpiece {
	transition: top 350ms, left 350ms;
}

video {
	display: none;
}

.droppable {
	cursor: default;
	z-index: -1;
	border: 3px solid transparent;
	background-color: transparent;
	margin-left: -8.33%;
	margin-top: -8.33%;
}

.customcursor {
    cursor: url(../img/grabbing.png), pointer; /* Maybe need .cur file for IE, check for other issues */
}

#mobile_error {
  margin: 40vh auto 0vh auto;
  padding: 0 15vw;
  text-align:center;
  font-family: "Quicksand", sans-serif;
  font-size: 5vw;
}

.piece9 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.start-button {
	display: block;
	margin: auto;
	z-index: 102;

	height: 80px;
	width: 200px;
	background-color: #348feb;
	border-radius: 5px;
	font-size: 20px;
	font-family: Verdana;
	border: 2px solid #215e9c;
	color: #215e9c;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;

}
.start-button:hover {
	color: #18436e;
	border: 2px solid #18436e;
 }

.blocker {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
}

.start-wrapper {
	position: absolute;
	width: 50vw;
	height: 50vh;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 300;
	background-color: #348feb;
}

.start-wrapper1 {
	top: 0;
	left: 0;
}

.start-wrapper2 {
	top: 0;
	left: 50vw;
}

.start-wrapper3 {
	top: 50vh;
	left: 0;
}
.start-wrapper4 {
	top: 50vh;
	left: 50vw;
}
