@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');

body {
  background-color: #0a0a0a;
  color: white;
  font-family: 'Source Code Pro', monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  flex-direction: column;
}

.content {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.6;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  z-index: 1;
  transition: transform 0.3s ease;
}

.content:hover {
  transform: scale(1.1);
}

h1 {
  font-size: 3em;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.content p strong {
  color: #00FF00;
}

.icon-container {
  position: relative;
  margin-top: 30px;
  display: flex;
  gap: 25px;
  z-index: 2;
}

.icon-link {
  color: white;
  font-size: 24px;
  text-decoration: none !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-link:hover {
  color: #ccc;
  transform: scale(1.2);
  text-decoration: none !important;
}

.icon-svg {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.icon-svg:hover {
  transform: scale(1.2);
}

.icon-link:not(:last-child) {
  margin-right: 25px;
}

a {
  color: white;
  text-decoration: none; 
  transition: text-decoration 0.3s ease;
}

a:hover {
  text-decoration: underline; 
}

.icon-container {
  position: relative;
  margin-top: 30px;
  display: flex;
  gap: 25px;
  z-index: 2;
}

.icon-link {
  color: white;
  font-size: 24px;
  text-decoration: none !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-link:hover {
  color: #ccc;
  transform: scale(1.2);
  text-decoration: none !important;
}

.icon-link:not(:last-child) {
  margin-right: 25px;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/png;base64,...');
  opacity: 0.3; 
  pointer-events: none;
  z-index: 0;
  animation: staticAnimation 0.1s infinite;
}

@keyframes staticAnimation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}