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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(45deg,
    #000000 0%,
    #000066 25%,
    #0066ff 50%,
    #000066 75%,
    #000000 100%
    );
    background-size: 250% 250%;
    animation: gradient 8s ease infinite;
    position: relative;
    filter: contrast(130%) brightness(0.85);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.content h1 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.content .title {
    font-size: 1rem;
    position: fixed;
    bottom: 2rem;
    right: 1rem;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    list-style-type: none;
}
a{
    color: inherit;
    list-style-type: none;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}


.social-links {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 2;
}

/* Update the noise overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.55;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Second noise layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.0' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
}

@media (max-width: 768px) {
    .container {
        position: static;
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        justify-content: center;
    }
    
    .social-links {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }

    .content {
        text-align: center;
    }
} 

