body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'SimHei', cursive, 'SimSun', 'STSong', serif;
    background-color: #000;
    /* Add a black background for the footer area */
}

.hero-container {
    background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2370&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 10px;
}

.content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: normal;
}

.content p {
    font-size: 2.5rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    font-weight: normal;
}

footer {
    text-align: center;
    padding: 20px;
    color: #ffffff;
    background-color: #000000;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 2px;
}