* {
    padding: 0;
    margin: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont,"Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "Noto Sans SC", "Hiragino Sans GB", "Source Han Sans CN", sans-serif;  
    -webkit-font-smoothing: antialiased;
    color: #000;
    line-height: 2;
    padding: 0 5%;
    background-color: #f6f6f6;
    font-size: 18px;
    overflow-x: hidden;
}

::selection {
    background: rgba(255, 255, 255, .08);
}

.intro {
    position: relative;
}

.clear:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.ch {
    width: 100%;
    padding-bottom: 60px;
    animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
    -webkit-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
    -ms-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
    -moz-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
}

@keyframes fadedown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadedown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-ms-keyframes fadedown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes fadedown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    position: relative;
    margin: 0 auto;
    height: 100%;
    max-width: 1800px;
}

.intro {
    color: #000;
}

.intro .container {
    animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
    -webkit-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
    -ms-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
    -moz-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
}

.hello {
    padding: 5% 0;
}

.hello h1 {
    font-size: 78px;
    letter-spacing: .2em;
    font-weight: 1000;
    line-height: 1.35em;
}

.hello .avatar {
    height: 150px;
    width: 150px;
    border-radius: 100%;
    float: left;
    margin-right: 50px;
}

.readme {
    font-size: 18px;
    letter-spacing: .2em;
}

.readme sup {
    font-size: .76em;
}

.readme p {
    margin-bottom: 1.8em;
}

.readme a {
    position: relative;
    color: #000;
    margin: 0 5px;
    text-decoration: none;
    transition: .3s all;
}
.readme a:hover{
    text-shadow: 0 0 2px #00000066;
    transition: .3s all;
}

.readme a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 98%;
    height: 3px;
    background-color: rgba(0, 0, 0, .6);
    transition: .3s all;
}

.readme a:hover::after {
    background-color: rgba(0, 0, 0, 1);
    height: 5px;
    box-shadow: 0 0 4px #00000066;
    transition: .3s all;
}

.readme .b {
    font-weight: bold;
}

.links a {
    color: #000;
    text-decoration: none;
}

.footer {
    letter-spacing: .3em;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer h3 {
    font-weight: normal;
    font-size: 20px;
    margin: 6px 0;
}

.footer p {
    font-size: 12px;
    opacity: .3;
}

.footer p.c {
    margin-top: 20px;
    letter-spacing: .1em;
}

.find-me a {
    text-decoration: none;
    color: #000;
}

.find-me a:hover {
    color: #fff;
    transition: 0s;
}

.find-me .item {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    transition: .2s all;
    position: relative;
    margin: 10px 20px 10px 0;
}

.find-me .item i {
    position: relative;
    display: inline-block;
    font-size: 26px;
    z-index: 2;
    transition: .3s all;
}

.find-me .item span {
    font-size: 12px;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 80px;
    height: auto;
    line-height: 1;
    z-index: 2;
    opacity: 0;
    transition: .3s all;
}

.find-me .item:hover span {
    opacity: .6;
    bottom: 16px;
}

.find-me .item:hover i {
    transform: translateY(-10px);
}

.find-me .item::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #333;
    transition: .2s all;
    border-radius: 2px;
    z-index: 0;
}

.find-me .item:nth-child(1)::after {
    background-color: #66ccff;
}

.find-me .item:nth-child(2)::after {
    background-color: #b600ff;
}

.find-me .item:nth-child(3)::after {
    background-color: #F58930;
}

.find-me .item:nth-child(4)::after {
    background-color: #f09199;
}

.find-me .item:nth-child(5)::after {
    background-color: #555;
}

.find-me .item:nth-child(6)::after {
    background-color: #f12d35;
}

.find-me .item:nth-child(7)::after {
    background-color: #0088cc;
}

.find-me .item:nth-child(9)::after {
    background-color: #28a9e0;
}


.find-me .item:hover {
    transform: translateY(-3px);
}

.find-me .item:hover::after {
    height: 100%;
    border-radius: 10px;
}

.enter-list {
    margin-left: -2%;
    margin-right: -2%;
}

.enter-list .item {
    position: relative;
    float: left;
    margin: 0 2%;
    width: 28.33%;
    display: block;
    text-decoration: none;
    height: 160px;
    background-color: #f6f6f6;
    border-style: solid;
    border-width: 1.5px;
    border-color: #d2d2d2;
    box-shadow: 0 2px 4px #00000024,0 0 2px #0000001f;
    border-radius: 10px;
    transition: .2s all;
    overflow: hidden;
}

.enter-list .item:hover {
    background-color: #d2d2d2;
    box-shadow: 0 8px 16px #00000024,0 0 2px #0000001f;
    transition: .5s all;
}

.enter-list .item .text {
    color: #252525;
    font-weight: bold;
    position: absolute;
    bottom: 10%;
    left: 8%;
}

.enter-list .item .external-arrow svg {
    position: absolute;
    top: 10px; 
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.enter-list .item .bg {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.enter-list .item .bg div {
    height: 100%;
    width: 100%;
}

.enter-list .item .bg svg {
    position: absolute;
    right: -20px;
    top: -20px;
    height: 160px;
    width: 160px;
}

.enter-list .item .bg .triangle svg {
    height: 180px;
    width: 180px;
}

.enter-list .item .bg .square svg {
    animation: spin-icon 20s linear infinite;
}

.enter-list .item .bg .triangle svg {
    animation: spin-icon 20s linear infinite;
}

.enter-list .item .bg .rounded svg {
    animation: spin-icon 20s linear infinite;
}

@keyframes spin-icon {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1400px) {
    .container {
        width: 80%;
    }
}

@media screen and (max-width: 700px) {
    body,
    html {
        min-width: 0;
        font-size: 15px;
    }
    .container {
        width: auto;
        margin: 0;
    }
    div.el span {
        display: block;
        width: 60%;
        left: 0;
        top: 75px;
        margin-left: 0;
        margin: 0 auto;
        margin-top: -40%;
    }
    .ch {
        padding: 20px 0;
    }
    .hello h1 {
        font-size: 40px;
    }
    .readme {
        font-size: 15px;
    }
    .enter-list .item {
        float: none;
        width: auto;
        margin-bottom: 20px;
        height: 100px;
    }
    .footer {
        padding-bottom: 100px;
    }
    .footer h3 {
        letter-spacing: .1em;
    }
    .footer p {
        letter-spacing: .2em;
    }
}