* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #f0f0f0;
}
.container {
    background: white;
    border: 1px lightgrey solid;
    box-shadow: 0 0 5px lightgrey;
    width: 800px;
    margin: 60px auto;
    padding: 5px;
}

p:not(:last-child), details:not(:last-child), blockquote:not(:last-child) {
    margin-bottom: 10px;
}
p span {
    background-color: lightgrey;
}

li:not(:last-child) {
    margin-bottom: 3px;
}

button {
    background-image: linear-gradient(white 6px, lightgrey);
    border: 1px lightgrey solid;
    box-shadow: 0 0 5px white inset;
    padding: 2px 5px;
}
button:hover {
    background-image: linear-gradient(lightgrey 6px, white);
    cursor: pointer;
}

blockquote {
    border-left: 1px lightgrey solid;
    margin-left: 5px;
    padding-left: 5px;
}

/* HEADER */

header {
    background-image: url(image1.jpg);
    background-size: 100%;
    background-position: center;
    border: 1px lightgrey solid;
    width: 100%;
    padding: 50px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
    color: white;
}

/* MAIN */

main {
    margin: 5px 0;
    display: flex;
    column-gap: 5px;
}

.left {
    width: 150px;
    margin-top: -25px;
}
.center {
    width: 450px;
}
.right {
    width: 200px;
}

.flex {
    display: flex;
    column-gap: 5px;
}

.box {
    border: 1px lightgrey solid;
}
.box:not(:last-child) {
    margin-bottom: 5px;
}
.box h4 {
    background-image: linear-gradient(lightgrey 12px, white);
    border-bottom: 1px lightgrey solid;
    box-shadow: 0 0 5px white inset;
    padding: 1px 5px;
}
.box .inner {
    padding: 5px;
    font-size: 14px;
    overflow: auto;
}
.box .inner p {
    text-align: justify;
}

/* LEFT */

nav {
    background-color: white;
    border: 1px lightgrey solid;
    border-top-right-radius: 15px;
    height: 297.5px;
    margin-bottom: 5px;
    padding: 5px;
    overflow: auto;
}
nav::-webkit-scrollbar {
    width: 0;
}
nav h4 {
    border-bottom: 1px lightgrey solid;
    width: 100%;
    margin: 10px 0;
    line-height: 1px;
    text-align: center;
}
nav span {
    background-color: white;
    padding: 0 5px;
}
nav a {
    margin-left: -10px;
    text-decoration: none;
    color: black;
    display: block;
}
nav a::before {
    content: "+ ";
    opacity: 0;
}
nav a:hover, nav a:hover::before {
    margin-left: 3px;
    opacity: 1;
}

.left button {
    width: 100%;
}
.left a:not(:last-child) button {
    margin-bottom: 5px;

}

/* CENTER */

.center .inner {
    height: 137.5px;
}

#about {
    width: 263px;
    margin: 0;
}

#currently {
    width: 170px;
    list-style: none;
}

/* RIGHT */

#updates {
    height: 202px;
    list-style: none;
}
#updates span {
    color: grey;
}

#stamps {
    border: 1px lightgrey solid;
    height: 44px;
    padding: 5px 0;
}
#stamps img {
    width: 88px;
    height: 31px;
}

#banner {
    border: 1px lightgrey solid;
    width: 100%;
    height: 70px;
    object-fit: cover;
}

/* FOOTER */

footer {
    font-size: 13px;
    color: grey;
    display: flex;
    justify-content: space-between;
}

.credit {
    margin-top: -6px;
    font-size: 16px;
    cursor: default;
    position: relative;
}
.creditLink {
    background-color: white;
    border: 1px lightgrey solid;
    width: 126px;
    padding: 5px;
    position: absolute;
    top: 20;
    left: 50%;
    margin-left: -63px;
    display: none;
}
.credit:hover .creditLink {
    display: block;
}

/* END */

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #e8e8e8;
}