body {
	background: radial-gradient(#201D38, #0F121C);
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
}
img {
	height: 60vh;
	width: auto;
	margin:0;
}
.img_container {
	height: 60vh;
	width: 100%;
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: center;
}
h1 {
	color: white;
	margin-bottom: 0;
}
p {
	margin-top:0;
	color: rgba(255,255,255,0.8);
}
.text_block {
	position: absolute;
	top: 20vh;
    left: 5vh;
}
.circle {
	border-radius: 50%;
	position: absolute;
	z-index: -2;
	transition: .2s;
}
.circle.small {
	height:5vh;
	width: 5vh;
	background-color: rgba(35,0,140,0.3);
}
.circle.medium {
	height: 10vh;
	width: 10vh;
	background-color: rgba(217,0,54,0.3);
}
.circle.big {
	height: 20vh;
	width: 20vh;
	background-color: rgba(255,115,115,0.3);
}