@font-face {
    font-family: 'Omegle';
    src: url('fonts/OMEGLE.ttf') format('truetype'),
         url('fonts/OMEGLE.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #000;
    color: #000;
    font-family: 'Omegle', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
}

main {
    text-align: center;
    padding: 1rem;
}

h1 {
    font-family: 'Omegle', sans-serif;
    font-size: clamp(2.5rem, 12vw, 8rem);
    font-weight: normal;
    letter-spacing: 0.05em;
    color: #000;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    paint-order: stroke fill;
}

.neq {
    font-family: 'Omegle', Arial, sans-serif;
    margin: 0 0.1em;
}

/* Fallback for browsers that don't support text-stroke well */
@supports not (-webkit-text-stroke: 1px #fff) {
    h1 {
        color: #fff;
        text-shadow: none;
    }
}
