Hello hello!
A lil spoiler if you haven't finished The First danganronpa game
THIS IS HER EXECUTION!!
Also, pls comment if the code is wrong, it works on my acc.
CODE:
<style>
body:before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background-image: url('https://media1.tenor.com/m/Uw5J-_NU6xEAAAAd/junko-enoshima-junko%27s-execution.gif');
background-size: cover;
background-repeat: no-repeat;
background-position:center;
animation: yourAnimation 1s ease 0s 1 normal forwards;
pointer-events: none;}
@keyframes yourAnimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} }
</style>