/* reset */
* {margin: 0; padding: 0; box-sizing: border-box;}
html, body, p, span, h1, h2, h3, h4, h5, h6, button {font-family: Poppins;}
html {background: #F3F7F8;}

/* vcard */
.con-user {
	padding-top: 15px;
	padding-bottom: 10px;
	margin: auto;
	width: 100%;
	max-width: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #fff;
	border-radius: 0px 0px 40px 0px;
}
.con-user .title {
	text-align: center;
	width: 100%;
}
.con-user .title h1 {
	font-size: 1.1rem;
	padding: 0px 0px;
}
.con-user .title p {
	font-size: .9rem;
	opacity: .6;
	padding: 6px 10px;
}
.con-user .title p a {
	color: #195DFF;
	text-decoration: underline;
}
.avatar img {
	width: 100px;
	border-radius: 30px;
}

/* navigation */
.con-menu {
	width: 100%;
	max-width: 500px;
	background: #F3F7F8;
	padding: 10px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 10;
	box-shadow: 0px 15px 20px -5px rgba(0,0,0,.08);
	border-radius: 0px 0px 30px 30px;
}
.con-menu button {
	padding: 12px;
	width: calc(50% - 4px);
	border: 0px;
	background: transparent;
	font-weight: bolder;
	font-size: 1rem;
	transition: all .25s ease;
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,.08);
	border-radius: 16px;
	z-index: 2;
}
.con-menu button.active {
	background: #fff;
	box-shadow: 0px 5px 25px 0px rgba(0,0,0,.06);
	color: #195DFF;
}

/* links */
.con-contents {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	flex: 1;
	height: 100%;
	position: relative;
	max-width: 500px;
	margin: auto;
	background: #F3F7F8;
}
.con-links {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	padding: 15px 20px;
	padding-top: 0px;
	max-width: 500px;
	width: 100%;
	margin: auto;
	min-width: 100%;
	scroll-snap-align: center;
	flex: 1;
	overflow: auto;
	padding-top: 20px;
}
.con-links a {
	display: block;
	width: 100%;
	padding: 18px 22px;
	text-decoration: none;
	font-size: 1rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #195DFF;
	margin-bottom: 16px;
	border-radius: 25px;
	position: relative;
	box-shadow: 0px 10px 30px 0px,.15);
}
.con-links a img {
	max-width: 22px;
	position: absolute;
	left: 20px;
}
.con-links a svg {
	width: 22px;
	fill: #fff;
	position: absolute;
	left: 20px;
}
.con-links a i {
	font-size: 1.6rem;
	position: absolute;
	left: 20px;
}
.con-links a span {
	text-align: center;
}
.con-links a span p {
	font-size: .8rem;
}

/* posts */
.con-posts {
	min-width: 100%;
	scroll-snap-align: center;
	overflow: auto;
	padding-bottom: 30px;
	max-width: 500px;
}
.con-posts .post {
	width: calc(100% - 40px);
	overflow: hidden;
	box-sizing: border-box;
	display: block;
	margin: 20px;
	position: relative;
	color: rgb(var(--text));
	border-radius: 30px;
	box-shadow: 0px 5px 30px 0px rgba(0,0,0,.08);
	margin-top: 20px;
	margin-bottom: 20px;
}
.con-file {
	width: 100%;
	padding-bottom: 100%;
	height: 0;
}
.con-file .post img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translate(0,-50%);
}
.con-posts .post footer {
	position: absolute;
	bottom: 0px;
	z-index: 10;
	padding: 10px 20px;
}
.con-posts .post footer h3 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.con-posts .post footer h3 i {
	margin-right: 5px;
	font-size: 1.4rem;
}
.con-posts .post footer p {
	opacity: .6;
}
.con-posts .post .effect {
	position: absolute;
	bottom: 0px;
	height: 150px;
	width: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(0,0,0,0.001) 100%);
}