body {
    background-color: #f9f5d7;/*黄*/
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center; 
    padding: 20px 0; 
}

.pace {
    display: felx;
	justify-content: center;
	margin-bottom: 20px; 
}

.pace img {
    max-height: 100px;
}

nav {
    display: flex;
    justify-content: space-evenly;
    gap: 30px; 
}

nav a {
    text-decoration: none;
    font-size: 18px; 
    color: #616543; /*绿*/
}

nav a:hover {
    text-decoration: underline;
}

main {
	display:flex;
	justify-content: space-between;
	padding: 5vw 12vw;
}

.intro {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro p {
	font-size: 16px;
	color:#616543;    
}

div img {
	width:auto;
	height:25vw;
	object-fit:contain;
}

.contact{
	display:flex;
	flex-direction:column;
	gap:30px;
}

.contact a {
	text-decoration:none;
	font-size: 18px;
	color:#616543;
}

.contact a:hover{
	text-decoration: underline
}

footer {
	text-align: center;
	padding: 20px 0;
}

.divider {
	background-color: #f2ae6f;/*橙*/
	margin: 20px auto;
    height: 4px;
    width: 100%;
	border:none;
}