.header-button a {
    background: linear-gradient(-225deg, #28a745 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
    background-size: 200% 100%;
    border: none;
    animation: gradient-animation 3s linear infinite;
    border-radius: 5px;
    color: #fff;
    padding: 5px 20px;
}
@keyframes gradient-animation{
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.content-home {
    scrollbar-width: thin;
    scrollbar-color: #dd3333 transparent;
}
.content-home {
    border: 1px solid #dd3333;
    border-radius: 10px;
    padding: 10px 20px;
    height: 600px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 2px 4px rgb(255 20 20 / 70%);
}
.section-title-normal, .section-title-normal span {
    border-bottom: 0;
    color: #fff;
    padding-bottom: 0;
}
.section-title-normal {
    background: #dd3333;
    padding: 5px 15px;
    border-radius: 5px;
}
.post-item .box {
    border: solid 1px #e5e5e5;
    background: #fff;
    box-shadow: 0 2px 4px rgb(227 227 227 / 70%);
    border-radius: 5px;
}
.post-item .box img {
    border-radius: 5px;
}
#content {
    padding-bottom: 0;
}
footer .section-title-normal {
    font-size: 18px;
    padding: 8px 15px;
}
footer {
    padding-top: 30px;
    background: #3d0000;
}
.breadcrumb {
    font-size: 13px;
    padding-top: 10px;
}
#comments {
    display: none;
}
.entry-header-text-top {
    padding-bottom: 0;
}
@media (max-width: 991px){
    .mfp-content {
        background: #dd3333 !important;
    }
}