@font-face {
    /*
        This font ("Virgil") used on this website is licensed under the SIL Open Font License, Version 1.1.
        Copyright (c) 2021 - Present, Ellinor Rapp, with Reserved Font Name Virgil.
        https://github.com/excalidraw/virgil/blob/main/LICENSE.md

        I do not own or have created this font.
    */

    font-family: 'Virgil';
    src: url('/Virgil.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font: 'Virgil', 'Comic Sans MS';
}

body {
    background-color: white;
    background-image: radial-gradient(circle, #e6e7e7 1px, transparent 1px);
    background-size: 20px 20px;
    max-width: 100%;
    font-family: var(--font), sans-serif;
    font-size: 24px;
}

p {
    margin-block-start: 0;
    margin-block-end: 0.3em;
}

a {
    color: black;
    text-decoration: none;
}

h1, h2, h3 {
    margin-block-end: 0.2rem;
}

h1, h2, h3, div, p {
    transition: font-size 0.5s, width 0.5s, height 0.5s, margin 0.5s;
}

/* */

.disclaimer {
    font-size: 20px;
    text-align: center;
    margin-bottom: 12px;
}

.disclaimer:before,
.disclaimer:after {
    content: "⚠️";
    margin: 0 6px;
}

/* Header */

header {
    font-size: 26px;
    display: flex;
    justify-content: space-between;
}

header #links {
    display: flex;
    gap: 24px;
    justify-content: end;
}

/* Hero */

#herocontent {
    flex: auto;
}

#hero {
    text-align: center;
    display: flex;
}

#hero h1 {
    font-size: 64px;
}

#hero p {
    font-size: 24px;
    margin: 0;
}

#hero a {
    text-decoration: underline;
}

#hero #links {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

#hero #links a {
    display: flex;
    align-items: center;
}

#hero #links img {
    width: 55px;
}

/* */

@media screen and (max-width: 1300px) {
    .bdlb {
        display: none;
    }
}

@media screen and (max-width: 1210px) {
    #hero h1 {
        font-size: 52px;
    }

    #hero p {
        font-size: 20px;
    }

    #hero #links {
        gap: 18px;
    }

    #hero #links img {
        width: 42px;
    }
}

@media screen and (max-width: 1030px) {
    #hero h1 {
        font-size: 46px;
    }

    #hero p {
        font-size: 18px;
    }

    #hero #links img {
        width: 36px;
    }
}

@media screen and (max-width: 900px) {
    header {
        font-size: 22px;
    }

    #hero h1 {
        font-size: 34px;
    }

    #hero p {
        font-size: 15px;
    }

    #hero #links img {
        width: 32px;
    }
}

/* phone */
@media screen and (max-width: 650px) {
    header {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    header {
        font-size: 18px;
    }

    #hero h1 {
        font-size: 30px;
    }

    #hero p {
        font-size: 14px;
    }
}

@media screen and (max-width: 325px) {
    header {
        font-size: 16px;
    }

    #hero h1 {
        font-size: 24px;
    }

    #hero p {
        font-size: 12px;
    }
}