@import url('https://fonts.googleapis.com/css2?family=ABeeZee&family=Varela+Round&display=swap');

:root {
    --polar-night-1: #2e3440;
    --polar-night-2: #3b4252;
    --polar-night-3: #434c5e;
    --polar-night-4: #4c566a;
    --snow-storm-1: #d8dee9;
    --snow-storm-2: #e5e9f0;
    --snow-storm-3: #eceff4;
    --frost-1: #8fbcbb;
    --frost-2: #88c0d0;
    --frost-3: #81a1c1;
    --frost-4: #5e81ac;
    --aurora-1: #bf616a;
    --aurora-2: #d08770;
    --aurora-3: #ebcb8b;
    --aurora-4: #a3be8c;
    --aurora-5: #b48ead;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    background: var(--polar-night-1);
    padding: 0;
    margin: 0 16px 16px 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

a.link {
    text-decoration: underline;
}

a.link:hover {
    text-decoration: none;
}

.page {
    margin: 0 auto;
    max-width: 1000px;
}

body,
input,
button {
    font-family: 'ABeeZee', sans-serif;
    font-size: 16px;
    color: var(--snow-storm-1);
}

input,
button,
.input,
.button {
    padding: 12px 16px;
    border: 1px solid var(--polar-night-3);
    border-radius: 10px;
    transition: filter 0.2s linear;
}

input {
    background: inherit;
}

input:focus {
    border-color: var(--frost-3);
    box-shadow: 0 0 0 2px var(--frost-4);
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

button,
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--polar-night-2);
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
    filter: brightness(120%);
    outline: none;
}

button:active,
.button:active {
    filter: none;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v82/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
}

.icon {
    font-family: 'Material Icons', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: flex;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
}

.icon-button {
    padding: 4px;
}