@keyframes blink {
  0.01% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.01% {
    opacity: 1;
  }
}

html {
  font-family: 'Montserrat', sans-serif;
  background-color: #000000;
  background-size: 100px;
  color: white;
  height: 100%;
	

}

body {
  margin: 0;
  padding: 16px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;

}

p,
pre {
  font-family: 'Montserrat', sans-serif;
  font-size: inherit;
  line-height: 1;
  margin: 0;
  display: block;
  padding: 5px;
  line-height: 1.4;
}

.blink {
  opacity: 1;
  animation: blink 1s linear infinite;
}

