.container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100vh;
	background-color: #292929;
	box-sizing: border-box;
	padding-top: 18vh;
	/* background-image: url('../img/ewm/jianse.png'); */
	background-size: 100% 100%;
}

* {
	margin: 0;
	padding: 0;
}

a {
	color: #000;
	text-decoration: none;
}

.name {
	margin-bottom: 1.5vh;
	/* font-weight: bold; */
	color: #BF303A;
	/* font-size: 1.5rem; */
	/* letter-spacing: 5px; */
}

.saoma {
	margin-bottom: 8vh;
	/* color: #fff; */
	/* font-size: 3.5rem; */
	/* margin-bottom: 4vh; */
	/* letter-spacing: 5px; */
	/* font-family: monospace; */
	/* font-weight: bold; */
}

.return {
	position: absolute;
	left: 80px;
	top: 80px;
	width: 5vw;
	cursor: pointer;
}

.return path {
	transition: fill 0.5s ease-in-out;
}


.return:hover path {
	fill: #949494;
}

@keyframes jump {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}