<div>GOOD</div>
body,html{margin:0;height:100%;}
body{display:grid;place-content:center;}
div{
padding:5vmin;
color:white;
background:#000;
animation-delay:1s;
animation-name:fadeIn;
animation-duration:1s;
animation-fill-mode:both;
}
@keyframes fadeIn{
from{
opacity:0;
}
to{
opacity:1;
background:hotpink;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.