html {
    color: #e0e0e0;
    background: #181820;
}

a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bolder;
}

a:hover {
    text-decoration: underline;
}

body {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 10px;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    margin: 30px 0;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

nav::before {
    content: "";
    background-image: url("icon.png");
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-right: -10px;
}

nav a:first-child {
    flex: 1 0 auto;
}

@media (width <= 650px)
{
    nav a:first-child {
        min-width: calc(100% - 32px - 10px);
    }

    nav a:not(:first-child) {
        font-size: 16px;
    }
}

p {
    line-height: 1.6;
    margin: 20px 0;
}

footer {
    text-align: center;
    color: #606060;
    font-size: 10px;
    margin-top: auto;
    margin-bottom: 10px;
    padding-top: 50px;
}

footer a {
    color: #606060;
}