
/*
Theme Name: Standard Dev Theme
Author: Pontus Wirsching
Version: 0.1
*/


/*

Changelog:

== 0.1 ==




*/



#menubar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
}



.snap {
	scroll-snap-align: center;
}

#cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgb(0, 0, 0);
	opacity: 0.2;
}


body {
	font-family: Helvetica;
	margin: 0;
	/*overflow: hidden;*/
	-webkit-scroll-snap-type: mandatory;
	-webkit-scroll-snap-points-y: repeat(100%);
	scroll-snap-type: y mandatory;

}

.scene {

	position: absolute;
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -50%);

	--width: 600px;
	--height: 400px;

	width: var(--width);
	height: var(--height);
	perspective: 1200px;
}

.transform-3d {
	width: var(--width);
	height: var(--height);
	position: relative;
	transform-style: preserve-3d;
	transform: translateZ(100px);
}

.cube__face {
	position: absolute;
	width: var(--width);
	height: var(--height);
	font-size: 40px;
	font-weight: bold;
	color: white;
	text-align: center;
	line-height: 200px;
}
	

.cube__face--back   { background: skyblue; border-radius: 150px; box-shadow: 0 0 100px rgba(0, 0, 0, 0.15)}

.cube__face--front2  { transform: translateZ(200px) scale(0.8);  padding-top: 200px; }
.cube__face--front  { transform: translateZ(100px);}
.cube__face--back   { transform: translateZ(-100px); }

.cube__face--front2 {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
}
.button {
	line-height: initial;
	background: deepskyblue;
	padding: 1px;
	border-radius: 100px;
	width: 40%;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

