body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: "Montserrat", system-ui;
    height: 100vh;
    display: grid;
    place-content: center;
    text-transform: uppercase;
    user-select: none;
}

main {
    display: none;
}

.visible {
    display: block;
}

h1 {
    font-size: clamp(0.5rem, 4vw, 2rem);
    text-align: center;
    line-height: clamp(1.5rem, 7vw, 4rem);
    font-weight: 500;
    text-shadow:
        0 0 2rem #FFFFFF91,
        0 0 4rem #FFFFFF91
}

span {
    font-weight: 700;
}