body {
    background: radial-gradient(#CCC, #999, #666);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    padding: 30px;
}
video{
    width: 100%;
}
#home{
    box-sizing: border-box;
    background-clip: padding-box;
    position: relative;
    box-shadow: 7px 12px 5px rgb(90 90 90 /30%);
}

#home::before,#home::after{
    transition: all ease-in-out .7s;
}

#home:hover::before{
    transform: translate(120px, 30px) rotate(
        4deg
    );
}

#home:hover::after{
    transform: translate(-100px, 10px) rotate(
        -3deg
    );
}

#home::before {
    content: "";
    background: url(https://am.giphy.tech/virtual-backgrounds/previews/colorful.gif);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 7px 12px 5px rgb(30 30 30);
}

#home::after {
    content: "";
    background: url(https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/1cc5e3ff-37e5-4b9c-abf4-92304fafa4c9/deekqx1-20d6363f-185e-4f8d-a748-f5b3f3b8fdde.gif?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzFjYzVlM2ZmLTM3ZTUtNGI5Yy1hYmY0LTkyMzA0ZmFmYTRjOVwvZGVla3F4MS0yMGQ2MzYzZi0xODVlLTRmOGQtYTc0OC1mNWIzZjNiOGZkZGUuZ2lmIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.bQwR0OGahVNiMtiHhvn95SFiuAZKxapsWSr_AbMK_Oc);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 7px 12px 5px rgb(30 30 30);
}

#footer{
        margin-bottom: 50px;
}

#blogTitle a{
  filter: blur(1px);
}

h3::after {
    margin-top: 3px;
    content: " ";
    display: block;
    border-bottom: 2px solid #FF5A50;
    width: 0px;
    transition: all ease-in-out .7s;
}
h3:hover::after {
    border-bottom: 2px solid #00AAFF;
    width: 80%;
}

[id^=cnblogs_c],[id^=ad],[id^=under_post]{
     display: none !important;
}

.postBody a:link, .postBody a:visited, .postBody a:active {
    text-decoration: none;
    background: #00AAFF;
    color: white;
    padding: 3px 14px;
    white-space: nowrap;
    border-radius: 10px;
    transition: all ease-in-out .5s;
}

.postBody a:hover{
    background: #ff1e71;
}

#author_profile_info>a{
    padding: 0;
    border-radius: 0;
    background: white;
}

.author_profile_info {
    display: flex;
    line-height: 18px;
    align-items: center;
    justify-content: center;
}

.author_profile_info a{
    margin: 0 3px;
}