body,
html {
	font-size: 18px;
}

body {
	background-color: #f1d5da; /* 浅粉色 */
	text-align: center;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
}

#mainImage {
	max-width: 200px;
	transition: all 0.3s ease;
}

h1 {
	color: #68495b;
}

button {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin: 10px;
	transition: all .5s ease;
	font-size: 1rem;
}

#yes {
	background-color: #d4818e; /* 粉色 */
	color: white;
}

#no {
	background-color: #6784b1; /* 蓝色 */
	color: white;
	min-width: 87px;
}

.yes-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffdae0; /* 粉色 */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.yes-text {
	font-size: 7vw; /* 字体大小根据视口宽度变化 */
}

.yes-image {
	width: 50%; /* 图片宽度自适应容器 */
	max-width: 300px; /* 最大宽度限制 */
}
