
html, body {
  margin: 0%;
 height: 100%;
}

body {
  background-color: #000000;
  /* color:#00ff0d; */
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  
}


p {
  font-size: 20px;
  font-family: "Silkscreen", sans-serif;

}

          

/* COLOR CHANGE */
.color-change-one {
    
    animation: color-change 26s infinite; 
}

@keyframes color-change {
    0% { color: rgb(0, 247, 12); }   
    25% { color: rgb(175, 3, 255); }
    50% { color: rgb(17, 0, 255); }  
    75% { color: rgb(255, 66, 28); } 
    100% { color: rgb(0, 247, 12); }
}


/* ------------------------------------------- */
