/* ===========================
   Global Styles
=========================== */

body {
    margin: 0;
    background-color: #0d1117;
    color: #f0f6fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===========================
   Navigation Bar
=========================== */

nav {
    position: sticky;
    top: 0;

    background-color: #161b22;
    border-bottom: 1px solid #30363d;

    padding: 20px 0;

    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 50px;

    margin: 0;
    padding: 0;

    list-style: none;
}

nav li {
    margin: 0;
}

nav a {
    color: #f0f6fc;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: color 0.2s ease;
}

nav a:hover {
    color: #58a6ff;
}

/* ===========================
   Main Hero Section
=========================== */

.hero {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    min-height: calc(100vh - 81px);

    padding: 40px;
    box-sizing: border-box;
}

/* ===========================
   Goblin Icon
=========================== */

.emoji {
    font-size: 140px;
    line-height: 1;
    margin-bottom: 25px;
}

/* ===========================
   Typography
=========================== */

h1 {
    margin: 0;

    font-size: 64px;
    font-weight: 700;
}

h2 {
    margin-top: 18px;
    margin-bottom: 24px;

    font-size: 28px;
    font-weight: 400;

    color: #58a6ff;
}

p {
    max-width: 700px;

    margin: 0;

    color: #8b949e;

    font-size: 22px;
    line-height: 1.6;
}

/* ===========================
   Generic Content Pages
=========================== */

.page {
    max-width: 900px;

    margin: 80px auto;

    padding: 0 30px;

    text-align: center;
}

.page h1 {
    margin-bottom: 20px;
}

.page p {
    margin: auto;
}
