* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0d0f14;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

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

.container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #11141b;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 900;
}

.logo span {
    color: #ffad3e;
}

nav {
    display: flex;
    gap: 24px;
    color: #aab2c0;
}

nav a:hover {
    color: #fff;
}

main {
    min-height: 75vh;
}

.site-footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #11141b;
    color: #929baa;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.footer-inner div {
    display: flex;
    gap: 20px;
}

@media (max-width: 700px) {
    nav {
        display: none;
    }

    .container {
        width: calc(100% - 20px);
    }
}