* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Archivo Black', 'Arial Black', 'Helvetica Neue', Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
  height: 100vh;
  background: black;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.glitch {
  color: white;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0, 0 0 15px #0f0, 0 0 20px #0f0;
  font-size: 5em;
  position: relative;
  letter-spacing: -0.1em;
  width: auto;
  margin: 0 auto;
}

@keyframes noise-anim {
  0% { clip: rect(42px, 9999px, 44px, 0); }
  10% { clip: rect(20px, 9999px, 40px, 0); }
  20% { clip: rect(40px, 9999px, 60px, 0); }
  30% { clip: rect(80px, 9999px, 100px, 0); }
  40% { clip: rect(10px, 9999px, 30px, 0); }
  50% { clip: rect(20px, 9999px, 40px, 0); }
  60% { clip: rect(40px, 9999px, 60px, 0); }
  70% { clip: rect(80px, 9999px, 100px, 0); }
  80% { clip: rect(10px, 9999px, 30px, 0); }
  90% { clip: rect(20px, 9999px, 40px, 0); }
  100% { clip: rect(40px, 9999px, 60px, 0); }
}

.glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 #0f0;
  top: 0;
  color: white;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 4s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% { clip: rect(52px, 9999px, 54px, 0); }
  10% { clip: rect(30px, 9999px, 50px, 0); }
  20% { clip: rect(50px, 9999px, 70px, 0); }
  30% { clip: rect(90px, 9999px, 110px, 0); }
  40% { clip: rect(20px, 9999px, 40px, 0); }
  50% { clip: rect(30px, 9999px, 50px, 0); }
  60% { clip: rect(50px, 9999px, 70px, 0); }
  70% { clip: rect(90px, 9999px, 110px, 0); }
  80% { clip: rect(20px, 9999px, 40px, 0); }
  90% { clip: rect(30px, 9999px, 50px, 0); }
  100% { clip: rect(50px, 9999px, 70px, 0); }
}

.glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 #0f0;
  top: 0;
  color: white;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 6s infinite linear alternate-reverse;
}

.links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.links a {
  color: white;
  text-decoration: none;
  margin: 10px;
  font-size: 1.2em;
  transition: all 0.3s;
  position: relative;
}

.links a:hover {
  color: #0f0;
}

.links a:hover::before,
.links a:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}

.links a:hover::before {
  left: 2px;
  text-shadow: -1px 0 red;
  animation: noise-anim 2s infinite linear alternate-reverse;
}

.links a:hover::after {
  left: -2px;
  text-shadow: 1px 0 blue;
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

.soundcloud-wrapper {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  background: black;
  padding: 10px;
  border-radius: 5px;
}

.soundcloud-info {
  margin-top: 5px;
  font-size: 10px;
  color: #cccccc;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;
  font-weight: 100;
}

.soundcloud-info a {
  color: #cccccc;
  text-decoration: none;
}

@media (max-width: 768px) {
  .glitch {
    font-size: 4em;
  }

  .links a {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .glitch {
    font-size: 4em;
    text-shadow: 0 0 3px #0f0, 0 0 6px #0f0, 0 0 9px #0f0, 0 0 12px #0f0;
  }

  .links {
    flex-direction: column;
    align-items: center;
  }

  .links a {
    margin: 5px 0;
    font-size: 1.2em;
  }

  .soundcloud-wrapper {
    width: 95%;
  }
}