@import url("fontface.css");
@import url("image.css");

body {
    background-color: rgb(242, 164, 101);
    background-image: url("../images/SimpleBackground.png");
    background-size: 5%;
    font-size: 1.0em;
    font-family: Bitter;
    margin: 0;
    padding: 0;
    color: rgb(231, 211, 197);
    line-height: 1.2em;
}

a,
a:visited {
    color: rgb(242, 164, 101);
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
    background-color: #9a4340;
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 1500px;
    margin: auto;
    width: 80%;
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #442928;
    border: 2px solid #311616;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 0px;
    margin: 0px;
    border-radius: 3px;
    border-bottom-right-radius: 12px;
}

#navbar {
    width: 100%;
    padding: 3px;
    font-family: zen-maru-gothic-regular;
    font-weight: bold;
    margin-bottom: 10px;
    background-color: #825655;
    margin-top: 0;
    margin-bottom: 0;
}

#navbar ul {
    display: flex;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    list-style-type: none;
    justify-content: start;
}

#navbar li {
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Zenmaru Gothic;
    font-size: 1.2em;
    display: inline-block;
    margin-right: 3em;
    margin-bottom: 0.2em;
    margin-top: 0.2em;
}

#navbar li a,
#navbar li a:visited {
    color: #d8bd8a;
    text-decoration: none;
    padding: 3px;
}

#navbar li a:hover {
    border-radius: 3px;
    background-color: #b58be7;
    color: #334299;
    text-decoration: none;
}

#flex {
    display: flex;
}

::selection {
    color: rgb(160, 124, 163);
    background: rgb(44, 49, 47);
}

article {
    padding: 10px 5% 20px 5%;
    background-color: #63403b;
    outline-style: none;
    margin-bottom: 0;
    width: 100%;
}

hr.thick {
    height: 5px;
    border: none;
    border-radius: 6px;

    background: linear-gradient(to left, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1));
}

hr.thin {
    height: 3px;
    border: none;
    border-radius: 2px;

    background: linear-gradient(to left, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1));
}

footer {
    background-color: #7d4e4d;
    width: 100%;
    padding: 10px;
    text-align: center;
}

p {
    color: rgb(207, 175, 166);
}

h1 {
    color: rgb(231, 196, 171);
    color: rgb(255, 200, 161);
}

h2,
h3,
h4 {
    color: rgb(255, 200, 161);
}

hr {
    border: solid #334299;
    border-width: 1px 0 0 0;
}

blockquote {
    padding: 0 20px;
    margin-left: 0;
    border-left: 2px dotted #9a4340;
    font-size: 1.1em;
    line-height: 1.6em;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
}



ul.none {
    padding: 0;
    list-style-type: none;
}

.right {
    float: right;
    margin-left: 1em;
}

.left {
    float: left;
    margin-right: 1em;
}

.center {
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

#recentpostlistdiv ul {
    padding: 0;
    list-style-type: none;
}

#nextprev {
    text-align: center;
    margin-top: 1.4em;
}

@media only screen and (max-width: 900px) {
    #flex {
        flex-wrap: wrap;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

#topBtn {
    border-radius: 10px;
    display: none;
    position: fixed;
    right: 30px;
    z-index: 99;
    border: none;
    outline-width: 4px;
    outline-style: solid;
    outline-color: #006992;
    background-color: #001D4A;
    color: #ECA400;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    font-family: "Courier New", sans-serif;
}

#topBtn:hover {
    color: #ECA400;
    background-color: #006992;
}

aside {
    background-color: #4F3130;
    width: 200px;
    padding: 8px;
    font-size: smaller;
}