/* style.css */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
}

header h1 {
    font-size: 4em;
    margin-bottom: 0.3em;
}

header p {
    font-size: 1.5em;
    color: #cccccc;
    max-width: 800px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

nav a {
    text-decoration: none;
    color: #f0f0f0;
    background-color: rgba(255,255,255,0.05);
    padding: 15px 25px;
    margin: 10px;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

nav a:hover {
    background-color: rgba(255,255,255,0.15);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #888888;
}


@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.typing-cursor {
    display: inline-block;
    width: 1ch;
    background-color: #f0f0f0;
    margin-left: 2px;
    animation: blink 1s step-start infinite;
}

header h1 {
    font-size: clamp(2rem, 8vw, 4em); /* scales from 2rem to 4em */
    margin-bottom: 0.3em;
}

header p {
    font-size: clamp(1rem, 4vw, 1.5em); /* scales from 1rem to 1.5em */
    color: #cccccc;
    max-width: 90%;
    margin: 0 auto;
}


