/* CSS files add styling rules to your content */

body {
  font-family: helvetica, arial, sans-serif;
  margin: 2em;
  background: #001;
  color: #eef;
  animation:fadein .5s ease-in;
}
@keyframes fadein{
  from{color:#001}to{color:#eef}
}
