@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

html, body {
    font-family: "Inter";
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    user-select: none;

    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
}

h1 {
    font-weight: 800;
    font-size: 32pt;
    margin-bottom: 10pt;
    padding: 0;
}

h2 {
    font-weight: 700;
    font-size: 26pt;
    margin-bottom: 10pt;
    padding: 0;
}

p {
    font-weight: 500;
    font-size: 12pt;
    margin: 10pt;
    margin-left: 50pt;
    margin-right: 50pt;
    padding: 0;
}

a:link {
    text-decoration: underline;
}

a:visited {
    text-decoration: underline;
}

.fowlestlink {
    margin: 0;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 600;
    width: fit-content;
    user-select: text;
    font-size: 20pt;
    margin-left: 5pt;
    margin-right: 5pt;
}

.fowlestlink:hover {
    font-weight: 900;
    color: #16BCAC;
}

.copyable {
    user-select: text;
}

code {
    font-family: "DM Mono";
}

@media (prefers-color-scheme: dark) {
    html, body {
        color: #fff;
        background-color: #0d0d0d;
    }

    .fowlestlink {
        color: #fff;
    }
    
    a:link {
        color: #fff;
    }

    a:visited {
        color: #fff;
    }
}

@media (prefers-color-scheme: light) {
    html, body {
        color: #0d0d0d;
        background-color: #fff;
    }

    .fowlestlink {
        color: #0d0d0d;
    }
    
    a:link {
        color: #0d0d0d;
    }

    a:visited {
        color: #0d0d0d;
    }
}