html {
    scroll-behavior: smooth;
}

body {
    font-family: Bahnschrift, Arial;
    margin: 0;
    padding: 0;
    color: white;
    background-color: #232323;
    line-height: 1.5;
    hyphens: auto;
}

img {
    display: block;
    width: 100%;
}

* {
    box-sizing: border-box;
}

a[target="_blank"]::after {
    background-color: currentColor;
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-left: 0.1em;
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='currentColor' d='M7 3v2H2v11h11v-5h2v6a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6Zm11-3v8h-2V3.413l-7.793 7.794-1.414-1.414L14.585 2H10V0h8Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='currentColor' d='M7 3v2H2v11h11v-5h2v6a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6Zm11-3v8h-2V3.413l-7.793 7.794-1.414-1.414L14.585 2H10V0h8Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

section {
    padding: 15px;
    max-width: 1000px;
    background-color: #232323;
    margin: auto;
}

section.black {
    max-width: none;
    width: 100%;
    background-color: #060606;
    box-shadow: 0 0 20px black;
    margin: 18px 0;
}

h1 {
    font-weight: 700;
    font-size: 48px;
    margin: 20px 0;
    text-wrap: balance;
}

p, li {
    font-size: 19px;
    @media only screen and (max-width: 500px) {
        font-size: 16px;
    }
}

h4 {
    font-weight: 400;
    font-size: 14pt;
}

a {
    color: #39a300;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


a.button {
    word-wrap: break-word;
    display: inline-block;
    background-color: #39a300;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    padding: 0.6rem 1.2rem 0.8rem 1.2rem;
    line-height: 1.5;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    margin: 10px;
    font-weight: 600;
    transition: 0.3s;
}

a.button:hover {
    background-color: #215e00;
}

a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

img.yt-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
}

footer {
    text-align: center;
}

footer p {
    white-space: pre;
    margin: 6px;
    text-wrap: balance;
}

.center {
    text-align: center;
}