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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Pixelify Sans', cursive, monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pixel-text {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    user-select: none;
    text-align: center;
}
