a {
    color: var(--brown);
    text-decoration: 1px dotted underline;
    -webkit-transition: 0.25s;
}

a:hover {
    opacity: 70%;
    -webkit-transition: 0.25s;
}

body {
    padding-top: 20px;
    display: block;
    margin: auto;
    width: 625px;
}

.content {
    display: flex;
}

.header {
    z-index: 1;
    position: sticky;
    top: 0;
    display: flex;
    border-bottom: 1px dotted var(--brown);
    background-color: var(--white);
}

.header a:hover {
    letter-spacing: 1px;
    -webkit-transition: 0.25s;
}

.header-left {
    padding: 5px 0;
    width: 150px;
    border-right: 1px dotted var(--brown);

}

.header-right {
    text-align: right;
    padding: 5px 0;
    width: 475px;
}

.header.footer {
    border-bottom: 0;
    border-top: 1px dotted var(--brown);
    position: sticky;
    bottom: 0;
}

.header.footer .header-right {
    height: 10px;
}

nav {
    position: sticky;
    top: 24px;
    box-sizing: border-box;
    width: 150px;
    overflow-y: scroll;
    height: min-content;
}

nav::-webkit-scrollbar {
    width: 0;
}

.month {
    display: block;
    padding: 5px 0;
    width: 150px;
    border-bottom: 1px dotted var(--brown);
    background-color: var(--white);
    text-decoration: 1px dotted underline var(--brown);
    font-weight: bold;
    text-transform: lowercase;
}

.month:hover {
    letter-spacing: 1px;
    -webkit-transition: 0.25s;
}

.entries a {
    display: block;
    padding: 5px 0 5px 10px;
    width: 150px;
    text-decoration: none;
    border-bottom: 1px dotted var(--brown);
    background-color: var(--white);
    -webkit-transition: 0.25s;
    box-sizing: border-box;
}

.entries a:hover {
    letter-spacing: 1px;
    padding-left: 15px;
    background-color: var(--brown);
    color: var(--white);
    opacity: 100%;
    border-bottom: 1px dotted var(--white);
    border-right: 1px dotted var(--white);
    -webkit-transition: 0.25s;
}

a.active {
    letter-spacing: 1px;
    position: sticky;
    width: 150px;
    pointer-events: none;
    background-color: var(--brown);
    color: var(--white);
    padding-left: 7px;
    border-bottom: 1px dotted var(--white);
    border-right: none;
}

main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 5px;
    box-sizing: border-box;
    width: 475px;
    border-left: 1px dotted var(--brown);
}

main::-webkit-scrollbar {
    width: 0;
}

article {
    padding: 25px 0 10px 5px;
    border-top: 1px dotted var(--brown);
}

article:first-child {
    border-top: none;
}

h2 {
    font-size: 15px;
    text-align: center;
    text-decoration: 1px dotted underline var(--brown);
}

.entry-date {
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: 1px dotted underline var(--brown);
}

.quote {
    border-left: 2px dotted var(--accent);
    padding-left: 10px;
    margin-left: 10px;
}

img {
	filter: sepia(0.494446) saturate(0.563724) brightness(0.927287) contrast(1.02181);
}

img:hover {
	filter: none;
	transition: filter 0.5s ease;
}

img:not(:hover) {
	transition: filter 0.5s ease;
}