@font-face {
    font-family: 'SF Pro Display';
    src: url('../../fonts/SF-Pro-Display-Bold.otf');
}
body {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 108%;
}
.nav{
    display: flex;
    justify-content: center;
    position: fixed;
    backdrop-filter: blur(50px);
    width:100;
    height:60px;
    width: 100%;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.575);
    -webkit-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
a{
    text-decoration: none;
    color: black;
}
.nav-content{
    max-width: 1200px;
    width: 90%;
    height: 100%;
    position: fixed;
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    font-size: 100%;
}
.nav-left{
    display: flex;
    align-items: center;
    width: 10%;
}
.nav .logo{
    width: 130%;
}
.tag{
    font-size: 14px;
    
    padding: 0px 25px;
    -webkit-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}
.tag:hover{
    color:rgb(0, 0, 0)
}
.nav-right{
    display: flex;
    align-items: center;
    height: 100%;
}
.tag-list{
    height: 100%; 
    display: flex; 
    align-content: center; 
    align-items: center;
}
.tag-project{
    display: inline;
    height: 100%;
    display: flex; 
    align-content: center; 
    align-items: center;
}
.dropdown{
    display: none;
}
.dropdown-project{
    position: absolute;
    top: 53px;
    right:180px;
    z-index: 2;
    background-color: white;
    backdrop-filter: blur(50px);
    color: black;
    width: 180px;
    height: 104px;
    border: 1px solid rgba(218, 218, 218, 0.452);
    border-radius: 10px;
    display: none;
    box-shadow: 0 3px 5px 1px rgba(131, 131, 131, 0.082);
}
.tag-project:hover .dropdown-project{
    display: block;
}
.dropdown-project:hover{
    display: block;
}
.dropdown-project-tag{
    padding: 18px 20px;
    text-align: center;
    display: block;
    font-size: 14px;
}
.dropdown-project-tag:hover{
    background-color: rgba(138, 138, 138, 0.253);
}
.first-tag{border-top-left-radius: 10px; border-top-right-radius: 10px;}
.last-tag{border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;}
.section-welcome{
    max-width: 1200px;
    width:90%;
    padding-top: 185px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 160px;
}
.welcome .pre-title{
    font-size: 180%;
    font-weight: bold;
    margin-left: 0.7%;
    margin-bottom: 5px
}
.welcome .title{
    font-size: 400%;
    font-weight: bold;
    line-height: 1.3;
}
.welcome .main-title{
    /*color: rgb(75, 96, 212);*/
    color:transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, rgb(185, 75, 212), rgb(75, 96, 212));
}
.welcome .discription{
    font-size: 180%;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 24px;
}
.intro .links{
    margin-top: 55px;
}
.links .about{
    color: white;
    font-size: 105%;
    background-color: black;
    padding: 3.4% 8% ;
    font-weight: bold;
    border-radius: 29px;
    box-shadow: 0 12px 12px -9px rgba(0, 0, 0, .29);
    -webkit-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.about:hover{
    background-color: rgb(37, 52, 139);
    padding: 3.4% 10% ;
    padding-top: 2.5%;
}
.logo-container{
    display: flex;
    justify-content: center;
    width:35%;
    height: 35%;
}
.right-logo{
    /*width:83%;
    height: 83%;*/
    width:95%;
    height: 95%;
    transform-origin: center;
    /*animation: 10s logo-rotate linear infinite,3s logo-halo linear infinite,3s logo-resize linear infinite;*/
}
@keyframes logo-rotate{
    100%{transform:rotate(360deg)}
}
@keyframes logo-halo{
    0%,100%{
        filter:drop-shadow(0px 0px 30px rgba(27, 145, 255, 6));
      }
      50%{
        filter:drop-shadow(0px 0px 5px rgba(27, 145, 255, 0.18));
      }
      88%{
        filter:drop-shadow(0px 0px 20px rgba(27, 145, 255, 3));
      }
}
@keyframes logo-resize{
    0%,100%{width:83%;height: 83%; }
    20%{width:82%;height: 82%;}
    50%{width:80%;height: 81%; }
    90%{width:78%;height: 80%;}
}
.slogan-container{
    margin-bottom: 1%;
    padding: 1.8% 0px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width:90%;
    border: 4px solid rgba(79, 77, 146, 0.877);
    background-image: linear-gradient(to top,rgb(237, 227, 253),rgb(255, 255, 255));
    background-color: rgb(237, 246, 255);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.137);
}
.slogan{
    font-size: 270%;
    font-weight: bold;
    color: rgb(0, 0, 0);
    margin-left: 8%;
}
.archive-link{
    font-size: 50%; 
    margin-left: 2%; 
    color: rgb(108, 110, 218);
    -webkit-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}
.archive-link:hover{
    color: rgb(139, 83, 190);
}
.avatar-container{
    margin-right: 5%;
    text-align: center;
    
}
.avatar{
    width:45% ;
    border:5px solid rgb(255, 255, 255);
    border-radius: 100%;
    box-shadow: 0 0 5px 5px rgba(98, 126, 202, 0.137);
    -webkit-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    transition: all 150ms linear;
}
.avatar:hover{
    box-shadow: 0 0 8px 10px rgba(98, 126, 202, 0.137);
}
.avatar-intro{
    font-size: 110%;
    font-weight: bold;
    display: block; 
    margin-top: 5%;
}
.divider-container{
    width:100%;
    height:50px;
    /*background-color: rgb(21, 20, 71);*/
    background-color: rgb(25, 24, 87);
}
.divider{
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgb(255, 255, 255);
}
.section-server-query{
    padding-top: 100px;
    padding-bottom: 550px;
    background-image: linear-gradient(to bottom, rgb(25, 24, 87),rgb(63, 22, 82));
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.section-server-query .content{
    display: flex;
    display: inline-block;
    max-width: 1200px;
    width:90%;
    justify-content: center;
    text-align: center;
}
.section-server-query .pre-title{
    color: rgb(233, 179, 98);
    font-size: 120%;
    font-weight: bold;
}
.section-server-query .title{
    margin-top: 10px;
    color: rgb(255, 255, 255);
    font-size: 300%;
    font-weight: bold;
}
.section-server-query .discription{
    margin-top: 30px;
    color: rgb(255, 255, 255);
    font-size: 120%;
    font-weight: bold;
}
.section-server-query .link-button{
    padding: 12px 24px;
    background-color: aliceblue;
    font-size: 100%;
    font-weight: bold;
    margin-top: 40px;
    display: inline-block;
    border-radius: 30px;
}
.section-server-query .image{
    height:420px;
    position: absolute;
    bottom: 30px;
}
.section-server-query .image-back{
    height:180px;
    position: absolute;
    bottom: 320px;
}
.section-archive{
    height:1700px;
    width:100%;
    background-color: rgb(245, 245, 245);
    justify-content: center;
    display: flex;
    
}
.section-archive .content{
    display: flex;
    display: inline-block;
    max-width: 1200px;
    width:90%;
    justify-content: center;
    align-items: center;
}
.section-archive .title{
    font-size:150%;
    font-weight:bold ;
    text-align: center;
    margin-top: 140px;
}
.section-archive .discription{
    font-size:380%;
    font-weight:bold ;
    padding-top: 20px;
    line-height: 1.2;
    text-align: center;
}
.section-archive .top-card-container{
    width:100%;
    height:530px;
    justify-content: center;
    display: flex;
    margin-top: 80px;
}
.section-archive .top-card{
    background-color: black;
    width:90%;
    height: 100%;
    border-radius:30px;
    background-color: wheat;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.39)),url(../../img/MinecraftBackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.219);
  }
.top-card .card-name{
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-top: 45px;
    margin-left: 45px;
    letter-spacing: .011em;
    font-family: simhei;
    text-shadow: black 0.1em 0.1em 0.2em;
}
.top-card .card-discription{
    font-size: 350%;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 11%;
    letter-spacing: .031em;
    line-height: 1.4;
    text-shadow: black 0.1em 0.1em 0.2em;
}
.section-archive .subcard-container{
    width:100%;
    height:540px;
    justify-content: center;
    display: flex;
    margin-top: 10px;
}
.section-archive .subcard1{
    background-color:rgb(26, 29, 48);
    width:44.9%;
    height: 99%;
    border-radius:30px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.219);
}
.subcard1 .card-name{
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-top: 45px;
    margin-left: 45px;
    letter-spacing: .011em;
    font-family: simhei;
}
.aliyun-img{
    height:40%;
    margin-left: 35%;
    margin-top: 9%;
}
.subcard1 .card-discription{
    font-size: 300%;
    font-weight: bold;
    color: white;
    margin-left: 45px;
    margin-top: 5%;
    letter-spacing: .021em;
    line-height: 1.25;
}
.section-archive .subcard2{
    margin-left: 1%;
    background-color: rgb(255, 255, 255);
    width:44.9%;
    height: 99%;
    border-radius:30px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.103);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;

}
.subcard2 .card-name{
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-top: 45px;
    margin-left: 45px;
    letter-spacing: .011em;
    font-family: simhei;
}
.java-logo-img{
    height:40%;
    margin-left: 33.5%;
    margin-top: 8%;
}
.subcard2 .card-discription{
    font-size: 300%;
    font-weight: bold;
    color: rgb(0, 0, 0);
    margin-left: 45px;
    margin-top: 5%;
    letter-spacing: .021em;
    line-height: 1.25;
}
.section-archive .links{
    text-align: center;
    margin-top: 35px;
}
.section-archive .link-button{
    display: inline-block;
    padding: 20px 27px;
    background-color: rgb(219, 219, 219);
    border-radius: 30px;
    color: rgb(0, 0, 0);
    font-size: 120%;
    font-weight: bold;
    font-family: simhei;
}
