@import url(https://fonts.googleapis.com/css?family=Exo+2:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.container {
	position: relative;
	max-width: 500px;
	margin: 20px auto;
	background: #fff;

	border-radius: 2.5rem;

	padding: 0 0 10px;

	box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}



.container__inner {
	background: #fff;
	position: relative;
	border-radius: 2.5rem;
	overflow: hidden;
	z-index: 2;
}

html,
body {
	padding: 0 10px;

	font-family: 'Exo 2', sans-serif;
	height: 100%;
}

.header {
	text-align: center;
	position: relative;
	margin-bottom: 50px;
	overflow: hidden;
	border-radius: 2.5rem;
}

.header__top {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: var(--avatar-url);
	height: 260px;
	width: 100%;
	margin-bottom: 70px;
}

/*.container:before {*/
/*	content: '';*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	transform: scale(1.05);*/
/*	width: 100%;*/
/*	height: 260px;*/
/*	background: var(--avatar-url);*/
/*	filter: blur(50px);*/
/*}*/

.header__name {
	font-size: 40px;
}

.header__sub-title {
	font-size: 20px;
	padding: 0 10px;
}

.header__avatar {
	position: absolute;
	width: 160px;
	height: 160px;

	border-radius: 50%;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 50%);
	border: 10px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 10px 15px 0px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	backdrop-filter: blur(5px);
}

.header__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 500px) {
	.header__avatar {
		bottom: 20%;
	}
	.header__top {
		margin-bottom: 10%;
	}
}

@media (max-width: 360px) {
	.header__avatar {
		bottom: 25%;
	}
}

.main {
	padding: 0 15px 50px;
	background: #fff;
}

.section__body {
	display: grid;
	gap: 20px;
}

.section:not(:last-child) {
	margin-bottom: 30px;
}

.section__title {
	font-size: 24px;
	margin-bottom: 20px;
}

.link {
	position: relative;

	border-radius: 1.5em;

	text-align: center;

	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 0.7em 1em;

	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.link:active {
	transform: translateY(0);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.link--disabled {
	cursor: default;
	opacity: 0.5;
}

.link--disabled:hover {
	transform: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.link__arrow {
	/* visibility: hidden; */
}

.link__arrow svg {
	width: 20px;
	height: 20px;
}

.link__img svg {
	width: 30px;
	height: 40px;
}
.link__label {
	text-decoration: none;
	color: inherit;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
}

.link__note {
	font-size: 12px;
}

.footer {
	text-align: center;
	text-decoration: none;
}
