:root {
    --font-body: "Roboto", sans-serif;
    --font-title: "Nunito", sans-serif;

    --color-bg-main: rgb(5, 5, 25);
    --color-text: rgba(224, 224, 224, 0.95);
    --color-accent-luck: rgba(139, 239, 62, 1);

    --column-width: 42rem;
    --column-margin-top: 4rem;
}

html {
    overflow-y: clip;
    height: 100vh;
    background: radial-gradient(ellipse at bottom, rgb(20, 10, 50) 0%, var(--color-bg-main) 100%);
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: normal;
    color: var(--color-text);
}

h1,
h2,
h3,
a,
b,
strong,
button {
    font-family: var(--font-title);
    font-style: normal;
}

h1,
h2,
h3,
b,
strong {
    font-weight: 500;
}

a, button {
    font-weight: 300;
}

p {
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--color-accent-luck);
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1rem;
}

input,
button {
    font-size: 1.3rem;
    color: var(--color-text);
}

button:focus:not(:focus-visible) {
    outline: none;
}

ul, p {
    margin: 0;
    padding: 0;
}

ul, dl {
    list-style: none;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}


p {
    -webkit-user-select: text !important;
    user-select: text !important;
}

h1 {
    -webkit-user-select: text !important;
    user-select: text !important;
}

h2 {
    -webkit-user-select: text !important;
    user-select: text !important;
}

h3 {
    -webkit-user-select: text !important;
    user-select: text !important;
}

h4 {
    -webkit-user-select: text !important;
    user-select: text !important;
}

h5 {
    -webkit-user-select: text !important;
    user-select: text !important;
}

h6 {
    -webkit-user-select: text !important;
    user-select: text !important;
}