
* {
    padding: 0;
    border: none;
    margin: 0;
    font-family: 'pingf';
}

.backimg {
    width: 100%;
    height: 100vh;
    z-index: -999;
    position: fixed;
    justify-items: center;
    align-items: center;
}

.backimg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    opacity: 0.95;
}




body {
    width: 100%;
    height: 100vh;
    display: grid;
    justify-items: center;
    align-content: flex-start;
    z-index: 0;
}


header {
    width: 800px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 30px;
    animation: headerdown 0.5s ease 0s;
}

@keyframes headerdown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.hd-left {
    width: 15%;
    height: 45px;
    display: grid;
    justify-items: center;
    align-items: center;
    background: #00000038;
    backdrop-filter: blur(1vh);
    border-radius: 5vh;
}

.hd-left a {
    text-decoration: none;
    width: 100%;
    height: 45px;
    display: grid;
    justify-items: center;
    align-items: center;
    border-radius: 5vh;
    background: none;
    transition: all 0.1s ease 0s;
    user-select: none;
    -webkit-user-drag: none;
}

.hd-left a:hover {
    background: #00000038;
}

.hd-left a:hover p {
    color: #ffffff;
}

.hd-left a p {
    font-size: 15px;
    color: #ffffffbe;
    transition: all 0.1s ease 0s;
    user-select: none;
    -webkit-user-drag: none;
}

.hd-right {
    width: 85%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00000038;
    backdrop-filter: blur(1vh);
    border-radius: 5vh;
    gap: 22px;
}

.hdr-a {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 35px;
    margin-left: 30px;
}

.hdr-a a {
    text-decoration: none;
    user-select: none;
    -webkit-user-drag: none;
}

.hdr-a a:hover p {
    color: #ffffff;
}

.hdr-a a p {
    font-size: 15px;
    color: #ffffffbe;
    transition: all 0.2s ease 0s;
}


.hdr-img {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 10px;
}

.hdr-img p {
    font-size: 15px;
    font-weight: 600;
    color: #ffffffbe;
    user-select: none;
    -webkit-user-drag: none;
}

.hdr-img img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 6px;
    user-select: none;
    -webkit-user-drag: none;
}




.head-img {
    width: 850px;
    height: 265px;
    display: grid;
    justify-items: center;
    align-items: flex-end;
}

.head-img img {
    width: 750px;
    border-radius: 0.8vh;
    user-select: none;
    -webkit-user-drag: none;
    transition: all 0.2s ease 0s;
    box-shadow: 0 5px 7px #00000083;
    animation: headimgshow 1s ease forwards;
}

@keyframes headimgshow {
    0%{
        opacity: 0;
    }
    40%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}




.blog-welcome {
    width: 750px;
    height: 120px;
    display: grid;
    justify-items: center;
    align-items: center;
}

.bg-wel {
    width: 100%;
    height: 50px;
    display: grid;
    justify-items: center;
    align-items: center;
    backdrop-filter: blur(0.5vh);
    background: #0000003a;
    border-radius: 0.8vh;
    animation: blgwelcome 1.2s ease forwards;
}

@keyframes blgwelcome {
    0%{
        opacity: 0;
    }
    45%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.bg-wel p {
    font-size: 17px;
    color: #ffffffc9;
    letter-spacing: 5px;
    user-select: none;
    -webkit-user-drag: none;
    animation: bgwelp 1.8s ease forwards;
}

@keyframes bgwelp {
    0%{
        opacity: 0;
        transform: translateY(-15px);
    }
    45%{
        opacity: 0;
        transform: translateY(-15px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

