/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom fonts */

@font-face {
    font-family: "Header";
    src: url("../assets/fonts/zenda/zenda.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Body */

body {
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    background: #CCCCCC;
    color: #222;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #222;
    color: white;
    padding: 1rem;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.header-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

h1 {
    font-family: "Header", serif;
    font-size: 3rem;
}

@media (max-width: 600px) {
    header {
        padding: 0.75rem;
    }

    .header-content {
        gap: 1rem;
    }

    .header-logo {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* Main */

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    padding: 0rem 0;
}

#intro {
    max-width: 750px;
    margin: 3rem auto;
    text-align: center;
}

.intro-divider {
    width: 120px;
    height: 1px;
    background: #888;
    margin: 1.5rem auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #444;
}

/* Footer */

footer {
    text-align: center;
    padding: 2rem;
    color: #666;
}