@font-face {
    font-family: chalkCursive;
    src: url('/Assets/fonts/MorganChalk.ttf');
}

@font-face {
    font-family: chalk;
    src: url('/Assets/fonts/Rudiment.ttf');
}

body {
    height: 100vh;
    color: white;
    overflow: hidden;
}

* {
    scrollbar-color: white #2c2c2c;
}

*::-webkit-scrollbar-track {
    background: black;
}

*::-webkit-scrollbar-thumb {
    background-color: white;
}

main {
    padding: 15px;

    height: 100%;
    background: url("/Assets/BGs/blackboard.jpeg");
    background-size: cover;

    border-width: 11px;
    border-style: solid;
    border-image: url("/Assets/BGs/wood.jpg") 36 round;

    overflow: auto;

    font-family: chalk;
    font-size: 1.5em;
}

.update {
    margin-bottom: 20px;
}

h1 {
    font-family: chalkcursive;
    font-size: 4em;
    font-weight: normal;
}

h2 {
    font-family: chalkcursive;
    font-size: 3em;
    font-weight: normal;

    margin: 10px 0;
}

h2.archived {
    color: var(--persian);
}

h3 {
    font-family: chalkcursive;
    font-size: 1.1em;
    font-weight: normal;
    margin-bottom: 5px;
}

.chalkLine {
    width: 30%;
    pointer-events: none;
}

.flexWrapper {
    display: flex;
}

.doodles {
    font-family: doodles;
}

#Fleur {
    margin-left: 10px;
    font-size: 3em;
}

#Stars {
    position: absolute;
    right: 0.4em;
    top: 0.2em;
    font-size: 6em;
}

ul {
    margin: 10px 0;
}

li {
    margin: 10px 0;
}

li.two {
    padding-left: 1em;
}

li.three {
    padding-left: 2em;
}

#updateList {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.updateLink {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;

    color: white;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;

    transition: color 0.2s ease;
}

.updateLink:hover,
.updateLink:focus {
    color: var(--persian);
}

.updateDate {
    font-weight: bold;
    white-space: nowrap;
}

.updateDate::after {
    content: ":";
    margin-right: 0.4em;
}

.updateSummary {
    flex: 1 1 200px;
}

#backLink {
    display: inline-block;
    margin-bottom: 15px;

    color: white;
    text-decoration: none;
    opacity: 0.75;
}

#backLink:hover,
#backLink:focus {
    color: var(--persian);
    opacity: 1;
}

@media only screen and (max-width: 810px) {
    #Stars {
        font-size: 3em;
    }
}