body { 
        margin: 0; 
        height: 100vh;
        position: relative; 
        background-color: black;
        font-family: "Workbench", sans-serif;
        line-height: 10px;
} 
     
.bottom-right { 
        position: absolute; 
        bottom: 10px;
        right: 10px;
        color: #83F01A;
        padding: 12px;
} 


.blink {
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(2);
  }
  51% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

