/* Shared styling for the static pages (support, privacy policy). */

body {
    margin: 0;
    background: #282c34;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: #ed1c24;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;
    box-sizing: border-box;
}

header .site-title {
    color: #ffffff;
    font-family: 'Satisfy', cursive;
    font-size: calc(10px + 2vmin);
    text-decoration: none;
}

header nav {
    display: flex;
    gap: 20px;
    font-family: 'Satisfy', cursive;
    font-size: 16px;
    white-space: nowrap;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
}

main {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

h1,
h2 {
    font-family: 'Satisfy', cursive;
    font-weight: normal;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 0;
}

h2 {
    font-size: 1.5em;
    margin-top: 40px;
}

a {
    color: #ff6b70;
}

.lead {
    margin-top: 8px;
    opacity: 0.8;
}

.updated {
    opacity: 0.6;
    font-size: 0.9em;
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #3a3f4a;
    opacity: 0.8;
}

@media (max-width: 700px) {
    header nav {
        gap: 12px;
        font-size: 14px;
    }
}

h3 {
    font-family: 'Satisfy', cursive;
    font-weight: normal;
    font-size: 1.2em;
    margin-top: 28px;
    margin-bottom: 4px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}
