*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk';
}

section
{
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section h2 {
    color: #fff;
    text-align: center;
    font-size: 5em;

    cursor: default;
}

section p {
    font-size: 2rem;
    text-align: center;
    color: #ffffff73;
}

.light {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at var(--x) var(--y), transparent 10%, rgba(0,0,0,0.98) 20%);
}
