body {
	margin: 0;
	font-family: sans-serif;
	font-size: 20px;
}

.fullSizeBlock {
	/* border: 1px solid black; */
	box-sizing: border-box;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100); /* for Chrome Mobile */
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.linksToSlides {
	display: block;
	position: fixed;
	color: white;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #40404044;
	padding: 8px 6px;
	max-height: 80vh;
	overflow: hidden;
	border-radius: 15px;
}

.linksToSlides:empty {
	padding: 0px;
}

.linksToSlides .item {
	background-color: #d8d8d8dd;
	width: 14px;
	height: 32px;
	margin: 15px 0px;
	border-radius: 15px;
	cursor: pointer;
}

.linksToSlides .item.active {
	background-color: #ffffff;
}

.linksToSlides .item:first-child {
	margin-top: 0px;
}

.linksToSlides .item:last-child {
	margin-bottom: 0px;
}

h2.oneSlideTitle {
	margin: 0px 0px 20px 0px;
	font-weight: normal;
	font-size: 2em;
}

.oneSlide {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 10px 30px 10px 20px;
}

.content1 {
	color: white;
	background-color: #283338;
}

.content2 {
	color: white;
	background-color: #183028;
}

.content3 {
	color: white;
	background-color: #405050;
}

.content4 {
	color: white;
	background-color: #525455;
}

.content5 {
	color: white;
	background-color: #304050;
}

.content6 {
	color: white;
	background-color: #445060;
}

.content7 {
	color: white;
	background-color: #474940;
}


@media screen and (max-width: 600px) {
	h2.oneSlideTitle {
		font-size: 1.5em;
	}
}