:root {
    font-family: Inter, sans-serif;

    --background-color: #1e1e1e;
    --text-color: #f9f9f9;

    --primary-color: #348F50;
    --secondary-color: #56B4D3;
}

@media (prefers-color-scheme: light) {
    :root {
        --background-color: #f9f9f9;
        --text-color: #1e1e1e;
    }
}

body {
    margin: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--background-color);
    color: var(--text-color);
}

a, .hero {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    color: transparent;
}

.hero {
    font-size: 4rem;
    font-weight: 600;
}

.text {
    text-align: center;
}
