/*GENERAL*/

a {
	cursor: pointer;
}

h1, h2, h3, h4 ,h5, p {
	padding: 0;
	margin: 0;
}

body {
	font-family: 'ITC Avant Garde Gothic Std';
	line-height: 1;
	background: #000;
}

.center {
	text-align: center;
}

.section {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.textBlock {
	padding-bottom: 150px;
	z-index: 3;
	position: relative;
}

h1 {
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}

h2 {
	font-size: 22px;
	text-transform: uppercase;
	color: #fff;
	padding: 50px 0;
	letter-spacing: 0.2em;
}

.figureHolder {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

a {
	transition: opacity 300ms ease;
	text-decoration: underline;
}

a:hover {
	opacity: 0.5;
}