@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:200";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

iframe {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	border: none
}

a {
	cursor: pointer;
	text-decoration: none;
	color: inherit
}

body,
html {
	height: 100%
}

html {
	font-size: 62.5%
}

body {
	min-width: 300px;
	min-height: 420px;
	color: #313f47;
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-size: 1.6rem;
	line-height: 1.1;
	background: linear-gradient(120deg, #f1d6cd, #554c47)
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%
}

.main-section {
	flex: 1;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

.step-item {
	background: #fff;
	max-width: 640px;
	width: 100%;
	padding: 3.5rem 0;
	margin: 0 auto
}

.avatar {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 2rem auto
}

.avatar::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #c8cccf;
	z-index: 0
}

.avatar .image {
	position: relative;
	z-index: 1;
	border-radius: 100%;
	box-shadow: 0 0 0 1.5rem #ffffff;
	max-height: 300px;
}

.step-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 2.8rem;
	letter-spacing: 5px
}

.step-subtitle {
	text-align: center;
	margin: 1.5rem auto;
	line-height: 1.5;
	text-transform: uppercase
}

.buttons-block {
	margin: 1rem auto;
	display: flex;
	justify-content: center
}

.submit-btn {
	padding: 1rem 2em;
	background: #fff;
	color: #414f57;
	border: 1px solid #c8cccf;
	border-radius: 5px;
	transition: all 0.25s
}

.submit-btn:hover {
	color: #ff7496;
	border-color: #ff7496
}

.submit-btn:active {
	background: #f2f2f2
}

footer {
	padding: 1.5rem;
	text-align: center;
	color: #fff;
	text-shadow: 0.5px 0.5px 5px #000
}

@media (max-width: 960px) {
	html {
		font-size: 60%
	}
}

@media (max-width: 768px) {
	html {
		font-size: 57.5%
	}
	.step-item {
		width: 90%
	}
}

@media (max-width: 568px) {
	.step-item {
		width: 90%;
		padding: 1rem
	}
	.avatar .image {
		border-radius: 50%;
	}
	.step-title {
		font-size: 2.2rem
	}
	.submit-btn {
		padding: 1rem
	}
	footer p {
		font-size: 1.4rem
	}
}

@media (max-width: 360px) {
	html {
		font-size: 55%
	}
}