* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    color: #fff;
    font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
    height: 100%;
}

body {
    background-color: #000;
    width: 100%;
}

a {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

.container {
    margin: 0 auto;
    width: 60%;
}

.header {
    padding: 25px 0;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
}

.header h1 img {
    width: 50px;
    margin-right: 10px;
    border-radius: 5px;
}

.content {
    text-align: center;
}

.content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.content p {
    font-size: 1.4rem;
    line-height: 180%;
    color: rgba(255, 255, 255, 0.7);
}

.box {
    background-color: #0D0D1C;
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 5rem;
}

.box-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.list {
    width: 20%;
    margin: 3rem 6.5% 0;
}

.list a {
    display: block;
}

.comming {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.list img {
    width: 100%;
    border-radius: 3rem;
}

.list .btn {
    display: block;
    margin-top: 2rem;
}

.list .btn img {
    border-radius: 5px;
    width: 80%;
    border: 1px solid #fff;
}

.footer {
    padding: 2rem 0;
    color: #fff;
    background: #0D0D1C;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer p {
    font-size: 1.4rem;
    line-height: 200%;
}

.footer span {
    width: 6rem;
    display: inline-block;
}


@media screen and (max-width: 960px) {
    .container {
        width: 90%;
    }

    .list {
        width: 35%;
    }
}