* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
        Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 2rem;
}
main {
    width: 40rem;
    margin: 0 auto;
}
h3 {
    margin: 1rem 0 0.5rem 0;
}
label {
    display: block;
}
ul {
    display: flex;
    list-style-type: none;
    margin: 0.5rem 0;
}
ol {
    list-style-type: none;
    margin-bottom: 2rem;
}
ul li {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}
button {
    min-width: 4rem;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 0.25rem;
}
h4 {
    text-transform: capitalize;
}
.description {
    font-size: 0.75rem;
    line-height: 1rem;
    color: grey;
}
.optional {
    font-weight: 400;
    color: grey;
}
.request {
    display: flex;
}
.request input[type="text"] {
    padding: 0.25rem;
    border: none;
    font-size: 0.875rem;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    border-left: 1px solid #aaa;
    border-radius: 0;
    width: 100%;
}
.request span {
    padding: 0.25rem;
    font-size: 0.875rem;
    background-color: #f2f2f2;
    border: 1px solid #aaa;
    border-right: none;
    border-radius: 0.25rem 0 0 0.25rem;
}
.request button {
    border: 1px solid #0059c6;
    background-color: #0375ff;
    color: white;
    border-radius: 0 0.25rem 0.25rem 0;
}
.request button:disabled {
    opacity: 0.5;
}
code.hljs, code {
    border: 1px solid #aaa;
    padding: 13px;
    display: block;
    border-radius: 0.25rem;
    margin-top: 1rem;
}
.results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.loading {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.big {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}
.secondary {
    color: grey;
    margin: 0.5rem 0;
}
.blue {
    color: #0375ff;
}
.results h4 {
    font-weight: 500;
}
.def {
    padding-left: 2rem;
}