/* -- reset -- */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    border: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

#app, 
#root,
#__next {
    isolation: isolate;
}

/* -- styles -- */
:root {
    --color-bg: #313b01;
    --color-bg-dark: #000000;
    --color-fg: #faf570;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.1em;
    
    color: var(--color-fg);

    width: 100vw;
    height: 100vh;
    
    background-image: radial-gradient(var(--color-bg), var(--color-bg-dark));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

main {
    text-align: center;
}

footer {
    margin: 16px;
}

.copyright {
    letter-spacing: initial;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

