a {
    text-decoration: none
}

.page {
    background-color: #e4e8f4;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    background-image: url(../img/building.png);
    background-size: 600px 400px;
    background-position: center;
    width: 600px;
    height: 400px;
    /* margin-bottom: 20%; */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 108px;
    background-color: #023b2d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    background-image: -webkit-linear-gradient(left, #0b3944, #e67d05 25%, #0b3944 50%, #e67d05 75%, #0b3944);
    background-image: linear-gradient(to right, #0b3944, #e67d05 25%, #0b3944 50%, #e67d05 75%, #0b3944); /* 标准属性 */
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text; /* 添加标准属性 */
    -webkit-background-size: 200% 100%;
    background-size: 200% 100%; /* 添加标准属性 */
    -webkit-animation: maskedAnimation 4s infinite linear;
    animation: maskedAnimation 4s infinite linear; /* 添加标准属性 */
}

@keyframes maskedAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}