body {
  color: #ffffff;
  background-color: #080808;
}
.theme-pink { color: rgb(255, 86, 189); }
.theme-orange { color: rgb(245, 114, 17); }

.templates {
  display: none;
}

p { 
  font-family: 'Cutive Mono', monospace; 
  font-size: 18px;
}

.shine {
  animation: pulse;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        color: rgb(0, 123, 255);
    }
    50% {
        color: rgb(0, 86, 179);
    }
    100% {
        color: rgb(0, 123, 255);
    }
}

.music-credit {
  font-size: 75%;
}