:root {
    --header-image: url('images/IMG_20250706_161007.jpg');
    --body-bg-image: url('images/IMG_20250711_164622.jpg');
    --rage-image: url('images/1767198424239.jpg');
    --content: #233018;
}

/* fonts */

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

/* global */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #0D1108;
    color: #ffffff;
}

/* page container */

#container {
    min-height: 100vh;
    max-width: 1300px;
    margin: 0 auto;
    
}

/* STORY LINK STYLE -  remove default list style and spacing */
.story-list ul {
    list-style-type: none; /* removes bullets */
    padding-left: 0;
    margin: 0;
}

/* style list items */
.story-list li {
    margin-bottom: 8px; /* spacing between items */
}

/* style links */
.story-list a {
    color: #ACC992;         /* your site’s greenish color */
    text-decoration: none;  /* remove underline */
    font-weight: 0;       /* optional: slightly bold */
}

/* header */

#header {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #000000;
    background-image: var(--header-image);
    background-repeat: no-repeat;
    background-position: center 21%;
    background-size: cover;
}

/* navbar */

#navbar {
    height: 40px;
    background-color: #516D36;
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #ACC992;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #ffffff;
}

#navbar li a.current {
    color: #ffffff;
}

/* main content */

main {
    background-color: #233018;
    padding: 30px;
    min-height: 600px;
}

/* quote divider*/

.blog-entry::after {
    content: "";
    display: block;
    height: 4px;             /* thickness of the line */
    width: 100%;              /* length of the line */
    margin: 10px auto 20px auto; /* spacing: top & bottom */
    background-color: #516D36;  /* line color */
    border-radius: 2px;      /* rounded edges */
}

/* text */

h1, h2, h3 {
    color: #ffffff;
}

h1 {
    font-size: 25px;
}

strong {
    color: #ffffff;
}

/* image styling */

.post-image {
    width: 150px;
    margin-top: 10px;
}

/* content box (if you still want boxes later) */

.box {
    background-color: #516D36;
    border: 1px solid #000000;
    padding: 10px;
}

/* responsive */

@media only screen and (max-width: 800px) {

    #navbar ul {
        flex-wrap: wrap;
    }

    main {
        padding: 20px;
    }

}