body,
html {
    height: 100%;
    margin: 0;
    background-color: #000000;
    /* Czarne tło */
    color: #ffffff;
    /* Biały tekst */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Styl dla głównego napisu */
h1.stencil-text {
    font-family: "Special Elite", system-ui;
    font-size: 5rem;
    letter-spacing: 2px;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

/* Styl dla linków (czcionka maszynowa) */
.links {
    font-family: 'Courier Prime', monospace;
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #cccccc;
}

/* Dostosowanie do telefonów */
@media (max-width: 600px) {
    h1.stencil-text {
        font-size: 3rem;
    }

    .links {
        flex-direction: column;
        gap: 10px;
    }
}