@charset "utf-8";

/*
:root {
	color-scheme:light dark;
}
*/
/*
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
*/
body {
	color:light-dark(black, white);
	background:light-dark(white, black);

}
.ani_button {
        /*font-size: 14px;
        height: 30px;
        line-height: 30px;
		*/
        color: #fff;
        display: inline-block;
        background: linear-gradient(-45deg, #ee7752, #e73c7e, #ccc, #f3f3f3);
        background-size: 400% 400%;
        animation: AnimationName 15s ease infinite;
        /*
		flex-direction: column;
        align-items: center;
        justify-content: center;
        top: 35%;
        text-align: center;
        padding: 0 20px;
        border-radius: 20px;
		*/
    }

@keyframes AnimationName
{
	0% {background-position: 0% 50%;}
	50% {background-position: 100% 50%;}
	100% {background-position: 0% 50%;}
}