@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,300&display=swap');
*{
	font-family: Roboto;
}
.container{
	width: 100%;
	height: 100vh;
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	background: #fff;
	align-items: center;
	justify-content: center;
}
		
.block{
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background:linear-gradient(45deg, #2F1C53, #A46DFF, #F6D1FD);
	
}
h2{
	color: #fff;
	text-shadow:0px 1px 0px #212d3a;
	text-align: center;
	font-size: 4vw;
	line-height: 1.4em;
	z-index: 1000;
	font-weight: 300;
	letter-spacing: 0.1em;
}
h2 span{
	font-size: 0.8em;
	letter-spacing: 0.1em;
	font-weight: 500;
	text-transform: uppercase;
}
.myButton {
			box-shadow:inset 0px 1px 0px 0px #97c4fe;
			background: #ccb7eb;
			background: linear-gradient(to bottom, #ccb7eb 0%, #b171ed 50%, #8b3cfa 51%, #a368f0 100%);
			border-radius:50px;
			border: 2px solid #551A8B;
			display:inline-block;
			cursor:pointer;
			color:#fff;
			font-family:Arial;
			font-size:20px;
			font-weight:bold;
			line-height: 0.9em;
			padding:25px 15px;
			text-decoration:none;
			text-shadow:0px 1px 0px #212d3a;
			position: absolute;
		  	top: 68%;
		  	left: 50%;
		  	transform: translate(-50%, -50%);
		}
		.myButton:hover {
			border:2px solid ##2F1C53;
			background: #ccb7eb;
			background: linear-gradient(to bottom, #ccb7eb 0%, #b171ed 50%, #8121ff 51%, #924af0 100%);
		}
