/* =========================================================
   SHARED STYLESHEET
   Every page links to this ONE file.
   Edit here, and the change shows up on every page at once.
   ========================================================= */

:root {
    --header-image: url('https://file.garden/al1eRDmrxi0o9ptq/Screenshot%202026-08-03%20162215.png');
    --body-bg-image: url('https://file.garden/al1eRDmrxi0o9ptq/256.png');
    --content: #361505;
}

@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;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #361505;
    background-size: 65px;
    color: #fceaff;
    background-image: var(--body-bg-image);
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 1000px;
    margin: 0 auto;
}

#container a {
    color: #361505;
    font-weight: bold;
}

#header {
    width: 100%;
    background-color: #702c1e;
    height: 150px;
    background-image: var(--header-image);
    background-size: 100%;
    border-style: inset;
}

#navbar {
    height: 40px;
    background-color: #9c2e0c;
    width: 100%;
    border-style: inset;
    border-width: 3px;
    border-color: #8b1a1a #3a0a0a #3a0a0a #8b1a1a;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #361505;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #0d00ff;
    text-decoration: underline;
}

#flex {
    display: flex;
}

aside {
    background-color: #9c2e0c;
    width: 200px;
    padding: 20px;
    font-size: smaller;
    border-style: inset;
    border-width: 3px;
    border-color: #8b1a1a #3a0a0a #3a0a0a #8b1a1a;
}

main {
    background-color: #702c1e;
    flex: 1;
    padding: 20px;
    order: 2;
    border-style: inset;
    border-width: 3px;
    border-color: #8b1a1a #3a0a0a #3a0a0a #8b1a1a;
}

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}

footer {
    background-color: #13092D;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
}

h1, h2, h3 {
    color: #140500;
}

h1 {
    font-size: 25px;
}

strong {
    color: #140500;
}

.box {
    background-color: #541400;
    border: 1px solid #541405;
    padding: 10px;
    border-width: 3px;
    border-color: #8b1a1a #3a0a0a #3a0a0a #8b1a1a;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}

@media only screen and (max-width: 500px) {
    #flex {
        flex-wrap: wrap;
    }
    aside {
        width: 100%;
    }
    main {
        order: 1;
    }
    #leftSidebar {
        order: 2;
    }
    #rightSidebar {
        order: 3;
    }
    #navbar ul {
        flex-wrap: wrap;
    }
}