/* Main Page Styles */
body {
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #0d1117;
    color: #f0f6fc;
    padding: 1rem;
}

.main-link {
    font-size: clamp(2rem, 8vw, 4rem);
    text-decoration: none;
    color: #7ee787;
    transition: color 0.2s ease;
}

.main-link:hover {
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 2rem;
    }
}
