#masthead ul > li > a {
    color: #fff;
}
#masthead ul > li > a:hover {
    color: #eea822;
}
#masthead {
    box-shadow: 2px 2px 9px 1px #ddd;
}
h1 {
    font-weight: bold;
    background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 5s linear infinite;
}
@keyframes rainbow{
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.content-banner h1 {font-size: 36px;}

.content-banner p {
    font-size: 18px;
}
.button:after, .button:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    z-index: -1;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.button: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;
    -webkit-animation-name: yellow-shadow;
    animation-name: yellow-shadow;
}
.button:after {
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 17px 3px #0ff, 0 0 4px 2px #0ff;
    box-shadow: 0 0 17px 3px #0ff, 0 0 4px 2px #0ff;
    -webkit-animation-name: cyan-shadow;
    animation-name: cyan-shadow;
}
@keyframes yellow-shadow{
    0%, 100% {
        top: 0;
        left: 0;
    }
    25% {
        top: 50%;
        left: 0;
    }
    50% {
        top: 50%;
        left: 50%;
    }
    75% {
        top: 0;
        left: 50%;
    }
}
@keyframes cyan-shadow{
    0%, 100% {
        right: 0;
        bottom: 0;
    }
    25% {
        right: 0;
        bottom: 50%;
    }
    50% {
        right: 50%;
        bottom: 50%;
    }
    75% {
        right: 50%;
        bottom: 0;
    }
}
.btn {
    border-radius: 7px;
    font-size: 18px;
}
.content-home h2 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #ff9c00, #9a0000);
    padding: 10px 20px;
    border-radius: 5px;
}
.section-title-normal, .section-title-normal span {
    border-bottom: 0;
    padding-bottom: 0;
    color: #eea822;
}
.ux-menu-link__link, .ux-menu-link__link:hover {
    color: #eea822 !important;
    min-height: auto;
    font-weight: bold;
}
.breadcrumb {
    padding-top: 12px;
}
#comments {
    display: none;
}
.entry-header-text-top {
    padding-bottom: 0;
}
.is-divider {
    display: none;
}
.archive-page-header h1 {
    text-align: center;
    font-size: 24px;
}
.post-title a {
    font-size: 20px;
}