:root {
    --h1-size: 11.4rem;
    --h2-size: 2.8rem;
    --h3-size: 2.8rem;
}

.header-arrow {
    margin-left: calc(50% - 7rem);
    width: 14rem;
    height: var(--header-arrow-height);
    background: var(--primary);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

main {
    --display: block;
    min-height: calc(100vh - var(--total-header-height));
}

iframe.page {
    width: 100%;
    height: calc(100vh - var(--header-start-height));
}

section {
    display: flex;

    flex-flow: column;
    align-items: stretch;
}

p {
    margin: 2rem 0;
}

img {
    display: inline-block;
    font-size: 1.2rem;
    text-align: center;
    vertical-align: middle;
    position: relative;
    border: none;
}

img::before {
    content: '';
    width: 100%;
    height: calc(100% + 10px);
    background: linear-gradient(to top left, var(--primary), var(--highlight)) no-repeat;
    background: linear-gradient(to top left in oklch, var(--primary), var(--highlight)) no-repeat;
    border: none;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
}

img::after {
    content: attr(alt);

    font-size: 18px;
    color: var(--primary-comp);

    display: flex;
    position: absolute;
    z-index: 2;
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

a {
    color: var(--current-highlight);
}

li::marker {
    color: var(--primary)
}