@font-face {
    font-family: 'font';
    src: url('Outfit-VariableFont_wght.ttf');
}

:root {
    --c1: rgb(235, 235, 235);
    --c2: rgb(35, 35, 35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'font', sans-serif;
    background: none;
    color: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
    line-height: 1;
}

html {
    width: 100%;
    height: 100%;
    background: var(--c1);
    color: var(--c2);
}

body {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 10vh 10vw;
    overflow: auto;
}

div {
    background: rgb(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    & > p {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        & > span {
            font-size: 0.75rem;
            &:first-child {
                font-weight: 600;
                &::after {
                    content: ':';
                }
            }
        }
    }
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
}
h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    background: var(--c2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

hr {
    width: 100%;
    border-top: 0.1rem solid rgb(0, 0, 0, 0.1);
}

img {
    width: 3rem;
    height: auto;
}

.sub {
    margin-top: -0.5rem;
}

.small, .small * {
    font-size: 0.75rem;
}

.help {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}