/* 
    * Written by MalwarePad https://malwarepad.com
*/

body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8vw;
    size: 8vw;

    animation: flashing 1s infinite step-end;
}

@keyframes flashing {
    0% {
        background-color: black;
        color: white;
    }

    50% {
        background-color: white;
        -webkit-filter: invert(1);
        filter: invert(1);
    }
}

#overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#overlay img {
  max-width: 60vw;
  width: auto;
  height: auto;
}