/* hil.st - brutalist anti-design experiment */
/* Palette: #ffffff, #000000, #0000ee, #551a8b, #ffff00, #808080 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #ffffff;
}

body {
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    max-width: 640px;
    padding: 8px;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
}

.domain-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* HORIZONTAL RULES */
hr {
    border: none;
    border-top: 1px solid #000000;
    margin: 8px 0;
}

/* CONTENT BLOCKS */
#content {
    padding: 0;
}

.block {
    border: 1px solid #000000;
    padding: 8px;
    margin: 8px 0;
}

.section-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #000000;
    margin-bottom: 8px;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 8px;
}

p:last-child {
    margin-bottom: 0;
}

/* LINKS - browser defaults intentionally */
a {
    color: #0000ee;
    text-decoration: underline;
}

a:visited {
    color: #551a8b;
}

/* LINK LIST */
.link-list {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
}

.link-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.link-list li:last-child {
    margin-bottom: 0;
}

/* HIGHLIGHT */
.highlight {
    background: #ffff00;
    padding: 0 2px;
}

/* GRAY TEXT */
.gray-text {
    color: #808080;
}

/* SOURCE CODE BLOCK */
#source {
    padding: 0;
}

.source-code {
    font-family: 'Fira Code', monospace;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    padding: 8px;
    margin: 8px 0;
    white-space: pre;
    overflow-x: auto;
    line-height: 1.5;
}

/* END */
#end {
    padding: 32px 0;
}

.end-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #808080;
}
