@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100&display=swap');

html {overflow-y:scroll;}
body {margin:0; padding:0; font-size:13px; font-family: 'Work Sans', sans-serif;  color:#fff; background-color:#017565; animation-iteration-count:infinite; -webkit-animation-name: bgfade; -webkit-animation-duration: 20s; animation-name: bgfade; animation-duration: 20s;}
.noselect {-webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}

@-webkit-keyframes bgfade {
    0%   {background-color: #017565;}
    25%  {background-color: #697501;}
    50%  {background-color: #580202;}
    100% {background-color: #017565;}
}

@keyframes bgfade {
    0%   {background-color: #017565;}
    25%  {background-color: #697501;}
    50%  {background-color: #580202;}
    100% {background-color: #017565;}
}