@font-face {
    font-family: '汉仪飞檐隶';
    src: url('../material/汉仪飞檐隶.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: '汉仪飞檐隶', sans-serif;
}

.navbar {
    position: absolute;
    top: 1%;
    right: 2.5%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 10px;
    z-index: 3;
}

.navbar a:hover {
    transform: scale(1.1);
    color: #FFD700;
}

.navbar a {
    color: #264758;
    text-decoration: none;
    font-size: 25px;
    margin-right: 35px;
    font-family: '汉仪飞檐隶', sans-serif;
}

.navbar a:last-child {
    margin-right: 7px;
}

.content {
    position: relative;
    height: 100%;
}

.scrolling-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url('../material/背景.png');
    background-size: auto 100%;
    background-position: center center;
    background-repeat: repeat-x;
    animation: scrollBackground 10s linear infinite;
    z-index: 1;
    margin-bottom: 15%;
}

.fixed-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../material/纹路.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

@keyframes scrollBackground {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.title1,
.title2,
.subtitle,
.title3,
.title4,
.subtitle1 {
    position: absolute;
    font-family: '汉仪飞檐隶', sans-serif;
}

.title1 {
    top: 20px;
    left: 30px;
    font-size: 170px;
    color: #648e93;

    z-index: 2;
}

.title2 {
    top: 145px;
    left: 30px;
    font-size: 160px;
    color: #648e93;

    z-index: 2;
}

.subtitle {
    bottom: 2px;
    right: 40px;
    font-size: 100px;
    color: #264758;
    text-shadow: 1px 1px 2px #000000;
    z-index: 2;
}

.title3 {
    top: 15px;
    left: 25px;
    font-size: 170px;
    color: #264758;

    z-index: 1;
}

.title4 {
    top: 140px;
    left: 25px;
    font-size: 160px;
    color: #264758;

    z-index: 1;
}

.subtitle1 {
    bottom: 5.5px;
    right: 43.5px;
    font-size: 100px;
    color: #648e93;
    text-shadow: 1px 1px 2px #000000;
    z-index: 1;
}