    body {
      animation: colorchange 20s infinite;
      -webkit-animation: colorchange 20s infinite;

    }

    @keyframes colorchange
    {
      0%   {background: red;}
      25%  {background: yellow;}
      50%  {background: blue;}
      75%  {background: green;}
      100% {background: red;}
    }

    @-webkit-keyframes colorchange
    {
      0%   {background: red;}
      25%  {background: yellow;}
      50%  {background: blue;}
      75%  {background: green;}
      100% {background: red;}
    }


#txt_name{ 
  font-family: "brownstdlight";
  src: url("../fonts/brown.std.light.otf");
  font-size: 300%; 
  animation: colorchangetxt 30s infinite;
  -webkit-animation: colorchangetxt 30s infinite;}

  @keyframes colorchangetxt
    {
      0%   {background: red;}
      25%  {background: yellow;}
      50%  {background: blue;}
      75%  {background: green;}
      100% {background: red;}
    }

    @-webkit-keyframes colorchangetxt
    {
      0%   {background: red;}
      25%  {background: yellow;}
      50%  {background: blue;}
      75%  {background: green;}
      100% {background: red;}
    }


#dialog{
  padding-top: 20px;
  display: center;
}

