:root {
    --black: #25272E;
    --grey-dark: #333743;
    --grey: #6A7081;
    --light: #ACB3C8;
    --pale: #F3F6FB;
    --primary: #FF4644;
    --text: var(--grey)
}

html {
    box-sizing:border-box
}

* {
    box-sizing:border-box
}

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

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display:block
}

audio, canvas, progress, video {
    display:inline-block
}

object, embed, iframe {
    max-width:100%
}

progress {
    vertical-align:baseline
}

html, body {
    min-height: 100vh;
    margin:0
}

a:active, a:focus, a:hover {
    outline:0
}

blockquote, blockquote:before, blockquote:after, q, q:before, q:after {
    content: '';
    content:none
}

code, pre {
    word-break:break-word
}

table {
    border-collapse: collapse;
    border-spacing:0
}

th {
    font-weight: normal;
    text-align: left;
    vertical-align:bottom
}

td {
    font-weight: normal;
    vertical-align:top
}

input, button, optgroup, select, textarea {
    margin: 0;
    text-transform: none;
    font-family: inherit;
    font-size: inherit;
    line-height:inherit
}

input:focus, button:focus, optgroup:focus, select:focus, textarea:focus {
    outline:none
}

input, select {
    vertical-align:middle
}

input[type=checkbox], input[type=radio] {
    vertical-align: text-top
}

input[type="search"]::-webkit-search-cancel-button {
    display:none
}

input::-moz-focus-inner, button::-moz-focus-inner {
    border: 0;
    padding:0
}

button, input[type=button], input[type=reset], input[type=submit] {
    width: auto;
    overflow: visible;
    -webkit-appearance:button
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height:0
}

sup {
    top:-0.5em
}

sub {
    bottom:-0.25em
}

progress {
    vertical-align:baseline
}

label, input[type=button], input[type=reset], input[type=submit], input[type=file], button {
    cursor: pointer
}

[type='search']::-webkit-search-decoration {
    -webkit-appearance:none
}

img {
    -ms-interpolation-mode:bicubic
}

a img {
    border:none
}

nav ul {
    margin: 0;
    padding: 0;
    list-style:none
}

* {
    -webkit-tap-highlight-color:transparent
}

html, body {
    min-height:100vh
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing:antialiased
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    font-family: 'Inter', sans-serif
}

a {
    --color: var(--primary);
    text-decoration: none;
    color: var(--color);
    transition:color .3s ease
}

a:link, a:active, a:visited, a:focus {
    text-decoration: none;
    color:var(--color)
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background:#16171C
}

#content > svg {
    display: block;
    margin: 0 auto;
    color: #262730;
    filter:drop-shadow(-1px -1px 0 #373844)
}

#content ul {
    margin: 52px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content:center
}

@media (max-width: 600px) {
    #content ul {
        margin-top:40px
    }
}

#content ul li {
    margin:0 20px
}

@media (max-width: 600px) {
    #content ul li {
        margin:0 12px
    }
}

#content ul li a {
    --color: #505162;
    display: block;
    transition:color .3s ease
}

#content ul li a svg {
    width: 24px;
    height: 24px;
    display:block
}

#content ul li:hover a {
    --color: #3956F1
}