html, body, h1, h2, h3, h4, p, span, div {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
}
* {
	box-sizing: border-box;
}
body{
	/*background-color: #192a56;*/
}
.container{
	max-width: 1200px;
	margin: 0 auto;
	/*background-color: #efefef;*/
}
.vp {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	z-index: -9999;
}
.vp:nth-child(1){
	/*background-color: #e84118;*/
}
.vp:nth-child(2){
	background-color: #ED4C67;
}
.vp:nth-child(3){
	background-color: #f1c40f;
	
}
.vp:nth-child(4){
	background-color: #e66767;
	
}

.words {
	position: absolute;
	left: 80%;
	top: 60%;
	transform: translate(-80%, -60%);
	font-family: 'Varela Round', sans-serif;
	font-size: 1.6em;
	color: #FFFFFF;
	text-align: right;
	min-width: 260px;
}
h1.count {
	position: fixed;
	left: 15%;
	top: 10%;
	transform: translate(-15%, -10%);
	font-family: 'Varela Round', sans-serif;
	font-size: 3.2em;
	color: #FFFFFF;
	text-align: right;
}
a.mail {
	position: fixed;
	left: 20%;
	top: 30%;
	transform: translate(-20%, -30%);
	font-family: 'Varela Round', sans-serif;
	font-size: 1.2em;
	color: #FFFFFF;
	text-align: right;
	text-decoration: none;
	opacity: 0;
}

.points {
	width: 250px;
	height: 250px;
	position: fixed;
	left: -10%;
	top:-10%;
	transform: translate(10%, 10%) scale(1.8);
	background-color: #00a8ff;
	border-radius: 50%;
	/*opacity: 0;*/
	transition: all .2s ease-in-out;
	/*text-align: right;*/
	color: #FFFFFF;
}
.points-change {
	opacity: 1;
	transform: scale(1.8);
}
.points-change1 {
	opacity: 1;
	transform: scale(1.2);
	background-color: #6c5ce7;
}
.points-change2 {
	opacity: 1;
	transform: scale(1.5);
	background-color: #00b894;
}
.points-change3 {
	opacity: 1;
	transform: scale(20) !important;
	background-color: #ff6b81;
}



@media screen and (min-width: 1096px) {
.words {
	font-size: 2.5em;
}
h1.count {
	font-size: 5.2em;
}
a.mail {
	font-size: 2.5em;
}
.points-change {
	transform: scale(5);
}
.points-change1 {
	transform: scale(6);
}
.points-change2 {
	transform: scale(5.5);
}

}