:root {
    --text-color: #000;
    --background-color: #fff;
}

[data-theme="dark"] {
    --text-color: #f0f0f0;
    --background-color: #2a2a2a;
}

body {
    font-family: serif;
    background: var(--background-color);
    color: var(--text-color);
    transition:
        background 0.2s linear,
        color 0.2s linear;
}

h1 {
    margin-top: 50px;
    margin-bottom: 15px;
}

h6 {
    margin-bottom: 30px;
    font-family: monospace;
    /* font-style: italic */
}

#navlinks {
    font-size: 14px;
}

#navlinks:after {
    border-bottom: 1px solid #888;
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 20px;
}

#main-content {
    padding-top: 10px;
}

a,
a:visited,
a:hover {
    color: #ec625f;
    text-decoration: none;
    font-style: italic;
}

a:hover {
    text-decoration: underline;
}

.disabled,
.disabled:visited {
    color: #999999;
    pointer-events: none;
    cursor: default;
}

.navlink,
.navlink:visited,
.navlink:hover {
    font-family: monospace;
    font-style: normal;
}

.navlink:hover {
    text-decoration: underline;
}
header {
    margin: 2em 0;
    text-align: center;
}

footer {
    font-family: monospace;
    font-size: 10px;
    text-align: center;
    color: #999999;
    margin-top: 3em;
}

.row {
    margin-left: 0;
    margin-right: 0;
    word-wrap: break-word;
}

#table-of-content {
    font-size: 18px;
    padding-top: 4px;
    max-width: 200px;
    /*margin-left: 1em;*/
}

#toc-inner {
    position: sticky;
    top: 5%;
}

#toc-inner p,
.block-title,
.courses-title {
    cursor: pointer;
}

#content {
    padding-right: 1em;
}

.block-title {
    font-size: 23px;
    margin-top: 1em;
    margin-bottom: 0.25em;
}

.block-entry {
    margin-bottom: 1em;
}
.block-entry .entry-content {
    display: block;
}
.block-entry p {
    margin-bottom: 0;
}
.resume-block,
.course-list {
    overflow: hidden;
    transition: height 0.3s ease-out;
}
.resume-block {
    height: auto;
}
.course-list {
    height: 0px;
}
.separator {
    width: 20%;
    left: 40%;
    position: relative;
    border-bottom: 1px ridge #88888844;
    border-radius: 50%;
    margin-top: 1em;
    margin-bottom: 2em;
    transition: all 0.3s ease-out;
}
