h1 {
    font-size: 3em;
    margin: 24px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;

    border-bottom: solid 3px var(--heading-line);

    text-align: left;
    position: relative;

    width: 80%;
    max-width: 800px;

    opacity: 1;
    transition: opacity 0.1s;
}

h1:hover {
    opacity: 0.75;
    cursor: pointer;
}

h1:active {
    opacity: 0.5;
}

@media (max-width: 768px) {
    h1 {
        width: 90%;
    }
}

h2 {
    font-size: 2em;
    margin: 0;
}

.quote {
    text-align: left;
    width: 100%;
    background-color: var(--frame-color-2);
    font-family: "Montserrat", sans-serif;
    padding: 8px;
    border-left: var(--frame-color-1) 2px solid;
}

.p-heading {
    margin: 36px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;

    border-bottom: solid 2px var(--heading-line);
    padding-bottom: 8px;
    color: var(--link-color);

    text-align: left;
    position: relative;
}

    .p-heading span {
        color: color-mix(in oklab, var(--link-color) 15%, white);
        font-style: italic;
    }

.p-block {
    text-align: justify;
    
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

ol > li {
    margin-top: 1em;
}

.accent {
    color: #499b65;
    font-size: 1em;
}

.text-shadow {
    text-shadow:
        2px 2px 0px #0f1217,
        0px 0px 16px #0f1217,
        0px 0px 16px #0f1217,
        0px 0px 16px #0f1217,
        0px 0px 16px #0f1217;
}

a, a:link, a:hover, a:active {
    text-underline-offset: 4px;
    color: var(--link-color);
}
a:visited {
    color: var(--link-color-visited);
}
.staticLink:visited {
    color: var(--link-color) !important;
}

.text-icon {
    height: 1em !important;
    vertical-align: middle;
}


.emoji-list {
    display: inline-block;
}

.emoji-item {
    display: flex;
    margin-bottom: 0.75em;
}

.emoji-icon {
    font-size: 2.4em;
    margin-right: 0.5em;
    
    line-height: 1;
    display: inline-block;
    width: 1.3em;
    
    text-align: center;
}

.emoji-text {
    font-size: 0.9em;
}


@keyframes blink-smooth {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.blinking {
    animation: blink-smooth 1.5s linear infinite;
}