body {
    font-family: 'Crimson Pro';
}

main {
max-width: 100ch;
margin-left: auto;
margin-right: auto;
}

.smol-css-grid {
--min: 40ch;
--gap: 1rem;

display: grid;
grid-gap: var(--gap);
/* min() with 100% prevents overflow
in extra narrow spaces */
grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
}


/* FORM STYLES */
#answerList div {
display:flex;
flex-direction: row;
gap: 1ch;
padding-bottom: 0.3rem;
}

.answerList {
    margin-left: 2em;
}

.question {
padding-bottom: 1rem;
}

textarea {
display: block;
width: 80%;
margin-inline: auto;
}

.tb-long {
height:10ex;
}

.answerList label {
    display:inline;
}

input[type=text] {
    width: 70%;
}

.interactive {
    border: 5px solid black;
    margin-top: 2rem;
    margin-inline: auto;
    width: fit-content;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}
/* TEXT TYPES */

header {
text-align:center;
font-size:3rem
}

sub-title {
display: block;
text-align:right;
font-size: 1.5rem;
padding-bottom: 3rem;
}

h1 {
    text-align: center;
}
h3 {
    font-family: 'Roboto Condensed';
    text-align: center;
}

label {
    display:block;
}

sub {
    display: block;
    text-align: center;
    text-wrap: balance;
}

.settings {
    padding-top: 1rem;
    padding-bottom: 3rem;
    text-align: center;
}

.settings summary {
    font-family: monospace;
    cursor: pointer;
}

#boxPreferences label {
    display: inline;
}

.done {
    background-color: grey;
}

.hide {
    display:none;
}

div.linkbox {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 0;
    display: flex;
    justify-content: center;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    max-width: 60vw;
    margin-inline: auto;
    font-size: 1.2em;
    height: 100%;
    padding: 0;
    margin: 0;
}

.links li {
    padding: 1.2em;
}

.links li::marker {
    content: "";
}

.links li:hover {
    background-color: black;
    color: white;
}

.links a, .links a:visited {
    color: inherit
}

/* Styling just for the downloadable record pages. NOTE: my downloads are in downloads so arent referencing this CSS file during the edit process */

.output p {
    padding-left: 1em;
}

span.check {
    padding-right: 1rem;
}

ul {
    list-style-type: none;
}

#arrows {
    display: none;
}

.true::before {
    content: "✓";
    padding-right: 2ex;
}

.false::before {
    content: " ";    
    padding-right: 4ex
}