<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;

  justify-content: center;
  align-items: center;
  min-height: 100vh;
  max-width:100%;
  background: #000;
}
a {
  text-decoration: none;
  color: #cc0000;

}

.font1 {
  font-weight: 700;
  text-align: center;
  font-size: min(max(16px, 4vw), 120px);
  font-family: Elemental End;
  text-transform: none;
  background: linear-gradient(90deg, #000, #fff, #000);
  letter-spacing: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 80%;
  animation: shine 5s linear infinite;
  position: relative;
}
.font2{
  font-weight: 400;
  text-align: center;
  font-size:  min(max(16px, 4vw), 40px);
  font-family: Arial, sans-serif;
  text-transform: none;
  background: linear-gradient(90deg, #000, #cc0000, #000);
  letter-spacing: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 80%;
  animation: shine 5s linear infinite;
  color:#cc0000;

}

@keyframes shine {
  0% {
    background-position-x: -500%;
  }
  100% {
    background-position-x: 500%;
  }
}
.container hr {
  width: 80%;
  height: 1px;
  border: none;
}</pre></body></html>