* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    font-family: "Microsoft YaHei", sans-serif;
    color: white;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
}

h1 {
    font-size: 40px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.name-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.name-wall span {
    font-size: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {

    h1 {
        font-size: 28px;
    }

    .name-wall span {
        font-size: 16px;
    }
}