.header-button a {
    font-size: 13px;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    animation: 3s linear infinite gradientMove;
    background-size: 200% auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    height: 22px;
    min-width: 120px;
    border: 2px solid #FFFB5B;
    border-radius: 6px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.header-button-1::before, .header-button-2::before, .header-button-1::after, .header-button-2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 7px;
    z-index: -1;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.header-button-1::before, .header-button-2::before {
    left: 0;
    top: 0;
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    animation-name: yellow-shadow;
}
@keyframes yellow-shadow{
    0% {
        top: 0;
        left: 0;
    }
    25% {
        top: 50%;
        left: 0;
    }
    50% {
        top: 50%;
        left: 50%;
    }
    75% {
        top: 0;
        left: 50%;
    }
    100% {
        top: 0;
        left: 0;
    }
}
.header-button-1::after, .header-button-2::after {
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 17px 3px #F31307, 0 0 4px 2px #F31307;
    box-shadow: 0 0 17px 3px #F31307, 0 0 4px 2px #F31307;
    animation-name: cyan-shadow;
}
@keyframes cyan-shadow{
    0% {
        right: 0;
        bottom: 0;
    }
    25% {
        right: 0;
        bottom: 50%;
    }
    50% {
        right: 50%;
        bottom: 50%;
    }
    75% {
        right: 50%;
        bottom: 0;
    }
    100% {
        right: 0;
        bottom: 0;
    }
}
.content-home {
    background: #39191C;
    border-radius: 60px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.4), -15px -15px 30px rgba(255, 255, 255, 0.2), inset 8px 8px 15px rgba(0, 0, 0, 0.3), inset -8px -8px 15px rgba(255, 255, 255, 0.3);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.content-home h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    animation: gifEffect 1.5s ease infinite;
    color: #fff;
}
@keyframes gifEffect{
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(173, 216, 230, 0.4), 0 0 20px rgba(173, 216, 230, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(173, 216, 230, 0.6), 0 0 40px rgba(173, 216, 230, 0.4);
        transform: scale(1.05);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(173, 216, 230, 0.4), 0 0 20px rgba(173, 216, 230, 0.2);
        transform: scale(1);
    }
}
.box1 >.col-inner, .colBr>.col-inner {
    background: #39191C;
    border-radius: 60px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.4), -15px -15px 30px rgba(255, 255, 255, 0.2), inset 8px 8px 15px rgba(0, 0, 0, 0.3), inset -8px -8px 15px rgba(255, 255, 255, 0.3);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.box1 >.col-inner img {
    border-radius: 20px;
}
.ux-menu-link__link:hover {
    color: #f3d80b !important;
}
.ux-menu-link__link {
    min-height: auto;
}
.copyright-footer {
    color: #fff;
}
.breadcrumb {
    padding-top: 10px;
    font-size: 13px;
}
.breadcrumb * {
    margin-bottom: 0;
}
#comments {
    display: none;
}
.entry-header-text-top {
    padding-bottom: 0;
}
.archive-page-header h1 {
    text-align: center;
    font-size: 22px;
    letter-spacing: 0;
}
.post-item .box {
    border: solid 1px #4f0000;
}
@media (max-width: 549px){
    .content-home h1 {
        font-size: 20px;
    }
}