.width {
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0;
	z-index: -1;
 }
 
.overflow {
	overflow-x: hidden;
	overflow-y: hidden;
	margin: 0;
}

.text-block {
	font-size: 14px;
	margin-top: 10px;
	margin-left: 10px;
}

.text-block-d {
	position: absolute;
	bottom: 0;
	font-size: 14px;
	margin-bottom: 10px;
	margin-left: 10px;
	max-width: 300px;
}

.name1 {
	background-color: blue;
	color: white;
}

.name2 {
	background-color: brown;
	color: yellow;
}

.name3 {
	background-color: pink;
	color: black;
}

.name4 {
	background-color: green;
	color: white;
}

#rotate0 {
	transform: scale(1, -1);
}

#rotate1 {
	transform: scale(-1, -1);
}

#rotate2 {
	transform: scale(1, 1);
}

#rotate3 {
	transform: scale(-1, 1);
}