main {

	margin: 80px 60px 20px;
}

main p {
	font-size: 16px;
	line-height: 26px;
	margin-top: -15px;
}

h1 {
	margin-top: 100px;
	color: #000000;
}

.demo-mobile {
	display: none;
}

.link {
	margin: -20px 0 10px;
	display: flex;
	align-items: center;
}

.link p {
	font-size: 16px;
	line-height: 26px;
	margin-top: 0;
}

.link h2 {
	font-size: 24px;
	line-height: 34px;

	font-family: Poppins, sans-serif;
	font-weight: 400;
	margin-bottom: 20px;
}


.link a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #EC008C;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}

.link a:hover,
.link a:focus {
	outline: none;
	color: gray;
	cursor: pointer;
}

.link a {
	padding: 12px 15px 0;
	height: 45px;
	font-size: 16px;
	color: #EC008C;
	font-family: Poppins, sans-serif;
}

.link a::before,
.link a::after {
	position: absolute;
	width: 45px;
	height: 2px;
	background: #EC008C;
	content: '';
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.link a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.link a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.link a:hover::before,
.link a:hover::after,
.link a:focus::before,
.link a:focus::after {
	opacity: 1;
}

.link a:hover::before,
.link a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.link a:hover::after,
.link a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}

.link a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #EC008C;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}

.link a:hover,
.link a:focus {
	outline: none;
	color: gray;
	cursor: pointer;
}

.link a {
	padding: 12px 15px 0;
	height: 45px;
	font-size: 14px;
	color: #EC008C;
	font-family: Poppins, sans-serif;
}

.link a::before,
.link a::after {
	position: absolute;
	width: 45px;
	height: 2px;
	background: #EC008C;
	content: '';
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.link a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.link a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.link a:hover::before,
.link a:hover::after,
.link a:focus::before,
.link a:focus::after {
	opacity: 1;
}

.link a:hover::before,
.link a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.link a:hover::after,
.link a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}




/* MOBILE VERSION */


@media only screen and (max-width: 992px) {
	main {
		justify-content: flex-end;
		background-position: center;
		margin-left: 20px;
		margin-right: 20px;
		margin-top: -30px;
	}

	h1 {
		font-size: 34px;
		line-height: 40px;
		text-align: center;
		margin-top: 90px;
	}
	
	h2 {
		text-align: center;
		font-size: 24px;
		line-height: 30px;
	}
	
	main p {
		text-align: center;
	}
	

	
	.link {
		text-align: center;
	}

}

@media only screen and (max-width: 600px) {
	.demo-mobile {
		display: block;
		text-align: center;
	}
	
	.demo {
		display: none;
	}
	
	.link {
		flex-direction: column;
	}
	
}
