.flex {
	display: flex;
	width: 100%;
	margin top: 20px;
	margin-bottom: 20px;
	margin-right: 0;
	margin-left: 0;
}

.space-around {
	justify-content: space-around;
}

.space-between {
	justify-content: space-between;
}

.flex-end {
	justify-content: flex-end;
}

.flex-vertical {
	display: flex;
	height: 400px;
	flex-direction: column;
}

.flex-start {
	justify-content: flex-start;
}

.white-background {
	background-color: #f4f8ff;
	width: 800px;
	height: 1000px;
}

.center {
	justify-content: center;
}

.center-text {
	text-align: center;
}

.body {
    font: normal 40px Futura, Arial black, sans-serif;
    margin-top: -300px;

}

h1 {
	font-family: futura;
	color: #4286f4;
	font-size: 25px;
	width: 400px;
	height: 1000px;
	margin-left: 200px;
	margin-top: 250px;
}

p {
	width: 200px;
	z-index: 100;
}

img {
	width: 600px;
	position: absolute;
	top: 25px;
	transform: translate(500px, 30px);
}

.text {
	position: absolute;
	left: 100px;
	top: 100px;
}

.red-text {
	color: red;
}

.absolute {
	position: absolute;
}

.arrow {
	color: red;
	font-family: futura;
	position: absolute;
	margin-top: 10px;
	margin-left: 10px;
	font-size: 15px;
}

.circle {
	background-color: white;
	position: absolute;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 3px solid white;
	margin-top: -110px;
	margin-left: 690px;
}


