@import "https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap";

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #000000;
    font-family: 'Syne Mono', monospace;
    text-transform: uppercase;
    gap: 1rem;
}

.text {
    color: #c1c4d4;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
}

.number {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    font-size: 1rem;
    color: #c1c4d4;
    margin: 0;
    line-height: 1;
    user-select: none;
}