body {
    margin: 0;
    height: 100vh;
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.container {
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 4px;
    color: #ffffff;
    letter-spacing: 1px;
}

h2 {
    font-size: 1rem;
    margin-bottom: 60px;
    color: #7c7c7c;
    letter-spacing: 0px;
}

.container a{
    color: #474747;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, transform 0.2s;   
}

.menu a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 15px 0;
    transition: color 0.3s, transform 0.2s;
}

a:hover {
    color: #aa00d4;
    transform: scale(1.05);
}

a:active {
    color: #ff4081;
}

footer {
    position: absolute;
    bottom: 250px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
    opacity: 0.7;
    letter-spacing: 0.5px;
    transition: opacity 0.5s ease, filter 0.5s ease;
    user-select: none;
}

footer p {
    margin: 0;
    display: inline-block;
    filter: blur(0);
    opacity: 1;
    transition: opacity 0.6s ease, filter 0.6s ease;
}

footer.fade-out {
    opacity: 0;
    filter: blur(4px);
}

footer.fade-in {
    opacity: 1;
    filter: blur(0);
}

.return {
  margin-right: 15px; 
}

.fade {
  opacity: 1;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.glitch-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.glitch-link::before {
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #ff4081;
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
    transform: translate(-2px, -2px);
}

.glitch-link::after {
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #00bcd4;
    opacity: 0;
    clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
}

.glitching::before,
.glitching::after {
    animation: glitch-flash 80ms steps(2, end);
}

@keyframes glitch-flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
