html,
body {
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    color: #000;
    margin: 0.25in 0.5in;
    padding: 8px;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

hr.section-divider {
    border-top: solid 4px #000 !important;
    margin: 4px;
}

a {
    text-decoration: none;
    color: #000;
}

.icon-row {
    display: flex;
    justify-content: space-between;
}

.icon-row>span {
    font-size: 12px;
    padding-right: 20px;
}

i {
    margin-right: 3px;
}

ul {
    padding-left: 0;
    margin: 5px 0px;
    list-style-type: none;
}

main {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

h2 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5rem;
}

h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0px;
}

h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0px;
}

.links {
    display: flex;
    justify-content: left;
    padding-bottom: 15px;
}

.links>span {
    font-size: 12px;
    font-weight: 600;
    padding-right: 15px;
}

p.tiny {
    --height: 3px;
    --font-size: calc(var(--height) / 3);

    font-size: var(--font-size);
    height: var(--height);
    overflow: hidden;

    color: #fff;

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;

    margin: 0px;
    margin-top: calc(-1 * var(--height));
    padding: 0px;
}

li {
    font-size: 12px;
}

.dotted-separator {
    border: none;
    border-top: 1px dashed #888;
    margin: 10px 0px;
}

.skill {
    font-size: 14px;
}

.editor-launch-button {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
}

.json-editor-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.json-editor-modal {
    width: min(900px, 92vw);
    height: min(80vh, 900px);
    background: #fff;
    border: 1px solid #000;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.json-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.json-editor-close {
    border: 1px solid #000;
    background: #fff;
    color: #000;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.json-editor-help {
    margin: 8px 0;
    font-size: 12px;
}

.json-editor-textarea {
    flex: 1;
    width: 100%;
    resize: none;
    border: 1px solid #000;
    font-family: monospace;
    font-size: 12px;
    padding: 8px;
    box-sizing: border-box;
}

.json-editor-error {
    color: #900;
    font-size: 12px;
    margin: 8px 0 0 0;
}

.json-editor-valid {
    color: #060;
    font-size: 12px;
    margin: 8px 0 0 0;
}

@media print {
    .no-print {
        display: none !important;
    }
}