@charset "UTF-8";

/* =About */
/*************************************************************/
#about {
	height: 100%;
	width: 65%;
	max-width: 1200px;
	margin: auto;
	animation: show 0.5s;
}

.user {
	margin-top: 80px;
	flex-direction: row;
}

.details {
	padding-top: 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.describe {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.user-icon {
	width: 100px;
	height: 100px;
	top: -55px;
	position: absolute;
	background-color: #ffffff;
	border: #000 solid 3px;
	border-radius: 50%;
}

.user-name {
	font-size: 150%;
	font-weight: 700;
	margin: 10px 0;
}

.user-desc {
	color: #828282;
	margin: 10px 0;
}

.user-social-links {
	font-size: 150%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	padding: 2px;
	transition: all 0.5s ease;
}

.user-social-links .fa {
	transition: all 0.5s ease;
}

.user-social-links .fa:hover {
	color: pink;
	transition: all 0.5s ease;
}

.social-links-entry .fa:hover {
	color: pink;
	transition: all 0.5s ease;
}

#content {
	background-color: #ffffff;
	border-radius: 10px;
}

.saying {
	padding: 0 20px 20px 20px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.saying ul {
	padding-left: 25px;
}

.moe-count {
	margin: 10px auto;
}

#message {
	background: #fff;
	padding: 10px;
	border-radius: 10px;
}

#message h3 {
	text-align: center;
}

#message img {
	padding: 5px 0;
}

/* =Small screen */
/*************************************************************/
@media (max-width: 750px) {
	#about {
		width: 100%;
	}

	.user {
		padding: 10px;
		margin-top: 50px;
		font-size: 75%;
	}

	.detail {
		margin-top: 40px;
	}

	.user-icon {
		width: 80px;
		height: 80px;
		margin: 0 10px;
	}

	.user-desc,
	.user-name {
		margin: 5px 0;
		text-align: center;
		font-size: 120%;
	}

	.user svg {
		width: 1rem;
		height: 1rem;
		transition: all 0.5s ease;
	}

	.menu-bottom svg {
		width: 1rem;
		height: 1rem;
		margin: 5px;
		color: #57a;
		transition: all 0.5s ease;
	}

	.menu-bottom svg:hover {
		opacity: 0.8;
	}

	.saying ul {
		padding-left: 20px;
	}
}
