body {
    font-family: Arial, sans-serif;
    padding: 0;
    background-color: #f4f4f4;
    width: 1200px;
    margin: 0 auto; /* Center horizontally */
}

header {
    background-image: url('img/home/header.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire header */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: white; /* Optional: sets text color to white for better contrast */
    padding: 20px; /* Optional: adds padding inside the header */
    text-align: center; /* Optional: centers the text */
}

h1 {
  font-family: 'Cedarville Cursive', cursive;
}

nav ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
    text-decoration: underline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
    background-color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 1200px;
    margin: 0 auto;
}

.button {
    border: none; /* 去掉边框 */
    

}

.container {
    width: 950px; /* Set the fixed width here */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}
