
:root {
    --base-font-size: 1rem;
}

html {
    font-family: Ubuntu, sans-serif;
    font-size: var(--base-font-size);
    margin: 0; padding:0;
}
body {
    background: #fff;
    margin: 0;
    padding: 0;
}


.button-39 {
    background-color: #FFFFFF;
    border: 1px solid rgb(209,213,219);
    border-radius: .5rem;
    box-sizing: border-box;
    color: #111827;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .75rem 1rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-39:hover {
    background-color: rgb(249,250,251);
}

.button-39:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.button-39:focus-visible {
    box-shadow: none;
}

.app-header {
    display: flex;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .app-header > div {
        display: flex;
        align-items: center;
    }

        .app-header > div > div:last-child {
            font-weight: 100;
            font-size: 1rem;
            margin-left: 24px;
        }
        .app-header > div > div h1 {
            font-weight: 100;
        }