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

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

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

/*body,*/
/*html {*/
/*    !*position: fixed;*!*/
/*    height: 100vh;*/
/*    width: 100vw;*/
/*}*/

html {
    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;
    overflow: hidden;
    overscroll-behavior: none;
    height: 100vh;
    width: 100vw;
}

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: none;
}

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, dl, p {
    margin: 0;
    padding: 0;
}

ul, dl {
    list-style: none;
    border: none;
}

ul li {
    list-style-type: none;
}

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


p,
a,
ul,
dl,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-user-select: text !important;
    user-select: text !important;
}

svg {
    max-width: 3rem;
}