:root {
    --color: #FFF72E;
    --color-background: #929292;
    --max-width: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: ecole, sans-serif;
    max-width: var(--max-width);
    margin: auto;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 18px;
    background-color: var(--color-background);
    padding-bottom: 60px;
}

body::before {
    content: '';
    position: sticky;
    top: 0;
    display: block;
    height: 20px;
    background: var(--color);
}

.text-style-default {
    font-size: 14px;
    line-height: 18px;
}

.text-style-intro {
    font-size: 26px;
    line-height: 33px;
}

p.custom-indent {
    text-indent: 13mm;
}

.clickable {
    cursor: pointer;
}
