:root {
    --primaryColor: #00ff00;
}

body, html {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background: #000;
    color: var(--primaryColor);
    font-family: monospace;
    text-shadow: 0 0 5px var(--primaryColor);
    animation: matrix-glow 1.5s ease-in-out infinite alternate;
}

nav {
    text-align: right;
    font-size: 1.3em;
    background: #000;
    border-radius: 10px;
}

#app {
    position: relative;
    z-index: 1;
    animation: matrix-fade 2s infinite;
}

#content {
    min-height: 300px;
    width: 100%;
    padding: 10px;
    background: #000;
    border-radius: 10px;
}

#logo {
    max-width: 300px;
    max-height: 300px;
    filter: brightness(1.2) hue-rotate(60deg) drop-shadow(0 0 10px var(--primaryColor));
    animation: matrix-pulse 2s ease-in-out infinite;
}

a, a:visited, a:active, a:hover {
    color: var(--primaryColor);
    text-decoration: none;
    font-weight: bold;
}

@keyframes matrix-glow {
    from {
        text-shadow: 0 0 5px var(--primaryColor);
    }
    to {
        text-shadow: 0 0 20px var(--primaryColor);
    }
}

@keyframes matrix-fade {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes matrix-pulse {
    0% {
        filter: brightness(1.2) hue-rotate(60deg) drop-shadow(0 0 10px var(--primaryColor));
    }
    50% {
        filter: brightness(1.4) hue-rotate(60deg) drop-shadow(0 0 20px var(--primaryColor));
    }
    100% {
        filter: brightness(1.2) hue-rotate(60deg) drop-shadow(0 0 10px var(--primaryColor));
    }
}

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