:root {
	font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;

	color-scheme: light dark;
	color: rgba(255, 255, 255, 0.87);
	--color: #242424;
	background-color: var(--color);

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

@media (prefers-color-scheme: light) {
	:root {
		color: #213547;
		background-color: #eee;
	}
	a:hover {
		color: #747bff;
	}
	button {
		background-color: #f9f9f9;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: 320px;
	min-height: 100vh;
	/* 最小宽度高度 */
}

#app {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

#box {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex: 1;
	text-align: center;
	align-items: center;
	margin: auto;
}

.poetry {
}
.poetry.title {
	font-size: 3em;
}
.poetry.author {
	color: #65645f;
	font-size: 1.5em;
}
.poetry.content {
	font-size: 2em;
}
p {
	text-align: center;
	max-width: 100%;
	line-height: 100%;
}

button {
	border-radius: 8px;
	border: 2px solid transparent;
	border-color: #213547;
	color: #646cff;
	background-color: transparent;
	padding: 0.6em 1.2em;
	font-size: 1em;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 0.25s;
	text-align: center;
	flex: 0 1;
	margin: 1vw;
}
button:hover {
	border-color: #646cff;
}
button:focus,
button:focus-visible {
	outline: 4px auto -webkit-focus-ring-color;
}
