body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 25px;
	color: #fff;
	position: relative;
	background-color: #b7b0d0;
}

@media all and (max-width: 1100px) {
	body {
		font-size: 20px;
	}
}

html body {
	margin: 0;
	padding: 0;
}

.wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
}

h1 {
	margin: 100px 20px 25px;
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
}

svg {
	width: 500px;
	height: auto;
}

@media all and (max-width: 1100px) {
	svg {
		width: 300px;
		height: auto;
	}
}

a {
	text-decoration: none;
	color: #fff;
}

svg#arrows {
	position: absolute;
	bottom: 0; right: 200px;
	width: 200px;
}

@media all and (max-width: 1300px) {
	svg#arrows {
		right: 100px;
		width: 100px;
	}
}

svg#arrows path,
svg#circles path,
svg#circle path {
	fill: #fff;
	opacity: 0.4;
}

svg#circles {
	position: absolute;
	top: 50vh; left: -50px;
	width: 350px;
}

@media all and (max-width: 1300px) {
	svg#circles {
		top: 200px;
	}
}

@media all and (max-width: 1100px) {
	svg#circles {
		width: 250px;
	}
}

@media all and (max-width: 500px) {
	svg#circles {
		display: none;
	}
}

svg#circle {
	position: absolute;
	top: -30; right: 30px;
	width: 100px;
}