button, a {
  transition: all ease 500ms;
}
button:hover, a:hover {
    transform: scale(1.1);
}

#sitebanner p {
    opacity: 0.95;
}

#sitebanner {
    opacity: 0.95;
    z-index: 9998;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 38px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    transition: transform 0.33s ease-in-out;
}

.anibg {
    animation: anislide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom: 0;
    left: -50%;
    opacity: .8;
    position: absolute;
    right: -50%;
    top: 0;
    z-index: -1;
}

.anibg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.anibg3 {
    animation-duration: 5s;
}

@keyframes anislide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

@media only screen and (max-width: 768px) {

}
