::selection {
    background: #7ccf74;
    color: #000000;
}
html {
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    overscroll-behavior: none;
}
body {
    height: 100%;
    margin: 0;
    background: #ffffff;
    color: #000000;
    font-size: 100%;
    font-family: Cantarell, "DejaVu Sans", "Bitstream Vera Sans", Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
body:has(#menu-toggle:checked) {
    overflow: hidden;
}
a {
    color: #7ccf74;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}
a:hover {
    color: #000000;
}
a:focus {
    outline: 0;
}
header {
    padding-bottom: 10px;
}
body.with-cover header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    padding-bottom: 0;
}
.kbd a:focus,
body.kbd > header label:active,
.kbd #menu-toggle:focus ~ label {
    outline: 2px dotted #b8b8b8;
}
img {
    max-width: 100%;
    border-style: none;
}
img.cover {
    margin-bottom: 60px;
}
#logo {
    display: block;
    float: left;
    margin: 30px;
    position: relative;
    z-index: 1000;
}
#logo > img {
    width: 75px;
    height: 75px;
    padding: 30px;
    display: block;
    font-size: 0.75rem;
    overflow: hidden;
    color: #000000;
    filter: drop-shadow(2px 2px 3px rgb(255,255,255,1));
}
#logo:hover > img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(61%) saturate(313%) hue-rotate(67deg) brightness(90%) contrast(91%);
    color: #7ccf74;
}
body > header label,
#menu-toggle {
    display: none;
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu li {
    float: left;
}
.menu a {
    display: inline-block;
    padding: 5px 15px;
    font-size: 1.2em;
    color: #000000;
    text-decoration: none;
    filter: drop-shadow(2px 2px 3px rgb(255,255,255,1));
    white-space: nowrap;
}
.menu .active a {
    text-decoration: underline;
    text-decoration-color: #7ccf74;
    text-decoration-thickness: 2.5px;
    text-underline-position: under;
}
.menu a:hover {
    color: #7ccf74;
    text-decoration: underline;
    text-decoration-thickness: 2.5px;
    text-underline-position: under;
}
#menu {
    float: right;
    padding: 90px 65px 65px;
}
main {
    flex-basis: 100%;
    margin: 0 auto;
    padding: 0 60px;
    width: 690px;
}
h1 {
    font-size: 2.5em;
    font-weight: normal;
    margin: 0 0 20px 0;
}
h2 {
    font-size: 2em;
    font-weight: normal;
    margin: 40px 0 20px 0;
}
p {
    margin: 0 0 20px 0;
}
footer {
    padding: 60px 80px;
    text-align: right;
    font-size: 0.8em;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
@media (max-width: 1600px) {
    #logo > img {
        width: 60px;
        height: 60px;
        padding: 20px;
    }
    #menu {
        padding: 70px 55px 60px;
    }
    img.cover {
        margin-bottom: 50px;
    }
    footer {
        padding: 50px 70px;
    }
}
@media (max-width: 1200px) {
    body > header label {
        display: block;
        cursor: pointer;
        position: relative;
        padding: 30px;
        margin: 40px 30px 30px;
        z-index: 1000;
        float: right;
    }
    #menu-toggle {
        display: initial;
    }
    #burger {
        width: 26px;
        height: 19px;
        position: relative;
        float: right;
    }
    #burger > span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #000000;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition-duration: .15s;
        transition-property: transform, width, left, top, display;
        transition-timing-function: ease-in-out;
    }
    #menu-toggle:checked ~ label #burger > span {
        background: #000000;
    }
    @media(hover: hover) and (pointer: fine) {
        label:hover #burger > span,
        #menu-toggle:checked ~ label:hover #burger > span {
            background: #7ccf74;
        }
    }
    #burger > span:nth-child(1) {
        top: 0px;
    }
    #burger > span:nth-child(2),
    #burger > span:nth-child(3) {
        top: 8px;
    }
    #burger > span:nth-child(4) {
        top: 16px;
    }
    #menu-toggle:checked ~ label #burger > span:nth-child(1),
    #menu-toggle:checked ~ label #burger > span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    #menu-toggle:checked ~ label #burger > span:nth-child(2),
    #menu-toggle:checked ~ label #burger > span:nth-child(3) {
        width: 30px;
        left: -2px;
    }
    #menu-toggle:checked ~ label #burger > span:nth-child(2) {
        transform: rotate(45deg);
    }
    #menu-toggle:checked ~ label #burger > span:nth-child(3) {
        transform: rotate(-45deg);
    }
    header nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #ffffff;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        z-index: 500;
        line-height: 1;
        padding: 168px 0 60px;
        overflow: auto;
    }
    #menu-toggle:checked ~ nav {
        display: flex;
        animation: show 0.15s ease-in;
    }
    @keyframes show {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    header .menu {
        width: 100%;
    }
    header .menu li {
        float: none;
    }
    header .menu a {
        padding: 20px;
        font-size: 1.5em;
    }
    #menu {
        float: none;
        padding: 0;
    }
}
@media (max-width: 900px) {
    #logo {
        margin: 15px;
    }
    #logo > img {
        width: 50px;
        height: 50px;
        padding: 15px;
    }
    body > header label {
        padding: 15px;
        margin: 34px 20px 32px;
    }
    #burger {
        width: 20px;
        height: 14px;
    }
    #burger > span {
        height: 2px;
    }
    #burger > span:nth-child(2),
    #burger > span:nth-child(3) {
        top: 6px;
    }
    #burger > span:nth-child(4) {
        top: 12px;
    }
    #menu-toggle:checked ~ label #burger > span:nth-child(2),
    #menu-toggle:checked ~ label #burger > span:nth-child(3) {
        width: 24px;
    }
    header nav {
        padding: 78px 0 25px;
    }
    header .menu a {
        font-size: 1.3em;
    }
    img.cover {
        margin-bottom: 25px;
    }
    main {
        padding: 0 35px;
    }
    footer {
        padding: 25px 35px;
        font-size: 0.7em;
    }
}
@media (max-width: 800px) {
    body.with-cover header {
        position: relative;
    }
    main {
        width: auto;
        margin: 0;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
        margin: 0 0 10px 0;
    }
    h2 {
        font-size: 1.5em;
        margin: 20px 0 10px 0;
    }
    p {
        font-size: 0.9em;
        margin: 0 0 10px 0;
    }
}
@media (max-height: 550px) {
    header .menu {
        width: auto;
        margin: 0 25px;
    }
    header .menu li {
        display: inline;
    }
}
