﻿

/* effect-shine */
a.effect-shine:hover {
    -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}

@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}

.WhiteTextBlackOutline {
    -webkit-text-stroke: 1px black;
    color: white;
}

.DarkOrange {
    color: #871b08;
}

.LightOrange {
    color: #d58001;
}

.BrushScriptFont{
    font-family: 'Brush Script MT';
}

.AdolphusFont{
    font-family: Adolphus;
}

.GradientText {
    background: -webkit-linear-gradient(left,rgb(131, 20, 7) 0%, rgb(187, 129, 9) 150%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}