@import url('https://fonts.googleapis.com/css?family=VT323');

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "VT323", monospace;
  background: url("cassbackground.jpg") no-repeat center center fixed;
  background-size: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 150px;
  height: 100%;
}

h1 {
  font-size: 5rem;
  font-style: italic;
  line-height: 1.2;
  position: relative;
  animation: text-flicker 2s infinite;
}

.main-text {
  color: #fff;
  mix-blend-mode: difference;
  text-shadow: 
    0 0 4px rgba(0, 0, 0, 0.7),
    0 0 12px rgba(0, 0, 0, 0.4);
}

.dud {
  color: #6a0dad;
  filter: blur(0.5px);
  text-shadow: 
    0 0 6px rgba(106, 13, 173, 0.6),
    0 0 12px rgba(106, 13, 173, 0.4);
  mix-blend-mode: normal;
}

.discreet-link {
  position: fixed;
  bottom: 15px;
  right: 20px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: color 0.3s ease;
}

.discreet-link:hover {
  color: rgba(0, 0, 0, 1);
}

@keyframes text-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.8; }
  22% { opacity: 0.5; }
}
