/* reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
}

html {
    padding: 0.5rem;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
    margin-block-end: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

body {
    min-height: 100vh;
    line-height: 1.2;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 0.8;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

:target {
    scroll-margin-block: 5ex;
}








html {
    font-size: 14px;
}

body {
    font-family: "Times New Roman", serif;
    font-variant-ligatures: common-ligatures discretionary-ligatures historical-ligatures contextual;
}

aside {
    margin-bottom: 0.5rem;
    display: flex;
    height: min-content;
    align-items: start;
}
aside img { 
    width: 2px;
    align-self: flex-start;
    padding-top:0.5rem;
}



form {
    display: flex;
    align-items: top;
    align-content: center;
}

button {
    box-sizing: border-box;
    height: 2rem;
    font: inherit;
}

select {
    text-align: center;
    font: inherit;
    
}





table {
    width: 27rem;
}

td {
    vertical-align: top;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}



td button {
    border: none;
    background: transparent;
    font: inherit;
    padding: 0;
    height: 1rem;
    cursor: pointer;
    color: teal;
    text-shadow: yellow 0 0 2px;
    -webkit-text-stroke: rgb(120, 107, 120) 0.03rem;
}

td p:last-child {
    margin: 0;
    height: 0;
    overflow: hidden;
    text-align: left;
}


@media (max-width: 500px) {
    table {
        width: fit-content;
    }
}