/* DARK MATERIAL BACKGROUND */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #0f0f0f; 
    color: #ffffff;
    font-family: "JetBrains Mono", monospace;
    overflow: hidden;
}

/* Typewriter text */
.line {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid rgba(255,255,255,.75);
    padding-right: 0;  /* prevents spacing after text */
}

/* Animation */
.anim-typewriter {
    animation:
        typewriter 0.65s steps(13) 0.3s forwards,
        blink 1000ms steps(40) infinite;
}

@keyframes typewriter {
    from { width: 0ch; }
    to   { width: 13ch; }
}

@keyframes blink {
    0%  { border-right-color: rgba(255,255,255,.75); }
    50% { border-right-color: transparent; }
    100%{ border-right-color: rgba(255,255,255,.75); }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.5em 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    text-align: center;

    /* subtle material blur */
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%;
}

footer .copyright {
    letter-spacing: 0.5px;
}

.socials {
    position: absolute;
    top: 55%; /* below your name */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.5em;
}

.social-icon {
    font-size: 2.3rem;
    color: rgba(255,255,255,0.7);
    transition: 0.2s ease;
}

.social-icon:hover {
    color: white;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
    transform: scale(1.1);
}
