:root {
    --bg-color: #141415;
    --text-color: #d2deeb;
    --text-color-secondary: #afb8be;
    --grid-color: rgba(235, 227, 227, 0.065);
    --grid-size: 16px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: var(--bg-color);
    background-image: radial-gradient(var(--grid-color) 1px, transparent 1px);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    -webkit-mask-image: radial-gradient(
        ellipse 50% 50% at 50% 50%,
        #000 60%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 50% 50% at 50% 50%,
        #000 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    font-size: 16px;
    font-weight: inherit;
    animation: fadeIn 1s ease-in;
}

.body {
    font-size: 12px;
    color: var(--text-color-secondary);
    font-weight: inherit;
    animation: fadeIn 1s ease-in;
}
