* {
    /* border: 1px dotted black; */
    margin: 0px auto;
    font-family: "Zen Old Mincho", serif;
}

/* background from https://css-pattern.com/quatrefoils/ */
html {
    --s: 58px;
    /* control the size*/
    --c1: #b9a05b;
    --c2: #625050;

    --_g: #0000 83%, var(--c1) 85% 99%, #0000 101%;
    background:
        radial-gradient(27% 29% at right, var(--_g)) calc(var(--s)/ 2) var(--s),
        radial-gradient(27% 29% at left, var(--_g)) calc(var(--s)/-2) var(--s),
        radial-gradient(29% 27% at top, var(--_g)) 0 calc(var(--s)/ 2),
        radial-gradient(29% 27% at bottom, var(--_g)) 0 calc(var(--s)/-2) var(--c2);
    background-size: calc(2*var(--s)) calc(2*var(--s));
}

body {
    font-size: 16pt;
}

p {
    line-height: 1.4;
}
a {
    color:cadetblue;
    text-decoration: underline dashed;
}
a:hover{
    text-decoration: underline solid;
}
a:active{
    color:rgb(255, 85, 0);
}

h1,
h2,
h3 {
    font-family: "Kosugi", sans-serif;
}

::selection {
    color: aliceblue;
    background-color: cadetblue;
}

/* ~~~~~~NAVIGATION BAR~~~~~ */
nav {
    background: rgb(41, 22, 0);
    margin: 0px auto;
    width: 80%;
    overflow:hidden;
}

nav ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
    display: flex;
    flex-direction: row;
    padding: 10px;
}

nav ul li {
    text-align: center;
    flex-grow: 1;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: rgb(255, 85, 0);
    font-size: 24pt;
    font-family: "Kosugi", sans-serif;
}

nav ul li a:hover {
    text-decoration: none;
    color: rgb(255, 197, 176);
}

nav ul li a:active {
    text-decoration: none;
    color: cadetblue;
}

/* ~~~~~ HEADER ~~~~~ */
#topHeader {
    max-height: 20%;
    max-width: 80%;
    box-sizing:border-box;
    border: 2px soslid rgb(41, 22, 0);
}
.imgContainer{
    position: relative;
    text-align: center;
}
.top-right{
    font-family: "DotGothic16", monospace;
    font-size: 2vw;
    color: white;
    text-shadow: 5px 3px 0px black;
    position: absolute;
    top: 1em;
    right: 2vw;
}
.top-left{
    font-family: "DotGothic16", monospace;
    font-size: 2vw;
    color: white;
    text-shadow: 5px 3px 0px black;
    position: absolute;
    top: 0.5em;
    left: 2vw;
}
.middle-right{
    font-family: "DotGothic16", monospace;
    font-size: 2vw;
    color: white;
    text-shadow: 5px 3px 0px rgb(0, 128, 255);
    position: absolute;
    top: 5em;
    right: 14em;
}
.bottom-right{
    font-family: "DotGothic16", monospace;
    font-size: 2vw;
    color: rgb(232, 89, 89);
    text-shadow: 5px 3px 0px white;
    position: absolute;
    bottom: 2.5em;
    right: 6vw;
}
.bottom-left{
    font-family: "DotGothic16", monospace;
    font-size: 2vw;
    color: lightgoldenrodyellow;
    text-shadow: 3px 3px 0px rgb(0, 128, 255);
    position: absolute;
    bottom: 1em;
    left: 6vw;
}

/* ~~~~~ MAIN ~~~~~ */
#mainContainer {
    border: 2px solid rgb(41, 22, 0);
    display: flex;
    width: 80%;
    justify-content: space-around;
    box-sizing: border-box;
    min-height: 100vh;
    overflow:auto;
    background: rgb(243, 241, 240);
    padding: 2em;
    
}

#full {
    width: 100%;
}

#middle {
    width: 60%;
    padding:1em;
}

#leftSidebar {
    width: 20%;
    padding:1em;
}

#rightSidebar {
    width: 20%;
    padding: 1em;
}

img {
    display: block;
    width: 100%;
}

/* ~~~~~ FOOTER ~~~~~ */
footer {
    max-width: 80%;
    background-color: cadetblue;
    padding: 10px;
    box-sizing: border-box;
}

footer p {
    color: white;
    font-family: "Kosugi", sans-serif;
    text-align: center;
}

footer ::selection {
    text-decoration: overline underline wavy gold;
}