html, body {
    background-color: #242424;
}

body {
    margin: 0;
}

main {
    display: grid;
    overflow: hidden;
    margin: 12px;
    row-gap: 12px;
    column-gap: 12px;
    grid-template-columns: 1fr;
}

/* main[mode=page] {
    grid-template-columns: 1fr;
} */

/* @media (max-width: 700px) {
    main {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    main {
        grid-template-columns: 1fr 1fr 1fr;
    }
} */

p[line] > a:first-child {
    /* visibility: hidden; */
    display: none;
}


article {
    display: flex;
    flex-direction: column;
    border: 1px solid #3e3e3e;
    border-radius: 3px;
    padding-bottom: 12px;
}



article > h1:first-child {
    border-bottom: 1px solid #3e3e3e;
    padding: 12px;
    font-size: 1em;
}

article > h1 {
    margin: 0;
    color: #a1a1a1;
}

article > h1 > a {
    color: inherit;
    text-decoration: none;
}

div[content] {
    padding: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

h1 {
    color: #fff;
    font-family: 'Playfair Display SC', serif;
    font-weight: 100;
}

p {
    color: #ff3681;
    display: flex;
    flex-direction: column;
    /* font-family: 'Source Sans Pro', sans-serif; */
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Lexend', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: geometricprecision;
    font-weight: 300;
}

p[line] {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}

p[line] a:first-child {
    text-decoration: none;
    color: inherit;
    color: #707070;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-size: 0.75em;
    align-items: baseline;
    margin-top: 3px;
    min-width: 30px;
    text-align: right;
    font-weight: 100;
}

footer {
    margin: 12px;
}
footer p {
    font-size: 1.5em;
    text-align: center;
    display: block;
    margin: 0;
    color: #b1b1b1;
    font-weight: 100;
    font-size: 1.5em;
}