

.BtnDefaultEffect{
    scale: 1;
    /* background-color: white !important; */
    transition-duration: 5s;
}
.activeBtnEvffect{
    scale: 1;
    background-color: brown !important;
    /* opacity: 0; */
    transition-duration: 5s;
    animation-name: AnimateScaleOfButton;
    animation-duration: 1s; 
    /* timing-function delay iteration-count direction fill-mode; */
}
@keyframes AnimateScaleOfButton {
    0%{scale: 1; opacity:1;}
    /* 50%{;} */
    100%{scale: 50; opacity: 0;}
}


.DefaultBtnStyle{
    color: yellowgreen;
    background-color: black;
}
.ActiveBtnStyle{
    color: black !important;
    background-color: yellowgreen !important;
}

.MenuDefStyle{
    color: yellowgreen;
    background-color: black;
    
}
.MenuDefStyle li :hover{
    color: #000000 !important;
    background-color: yellowgreen !important;

}