body {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 12in) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
}

header,
main,
footer {
    grid-column: 2 / 3;
    margin: 15px;
}

header,
main {
    font-size: 150%;
}

header {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    text-align: center;
}

#ewe {
    font-size: 150px;
    margin: 0 50px;
    user-select: none;
    font-family: "Noto Color Emoji", sans-serif;
    transition: filter 0.5s;
}

#ewe:hover {
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.5));
}

main {
    font-weight: 350;
    text-align: center;
}

main p::first-letter {
    font-weight: 600;
}

#footer-background {
    background: #222;
    grid-area: 3 / 1 / 4 / 4;
    height: 100%;
}

footer {
    grid-row: 3 / 4;
    font-size: 20px;
    color: white;
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    margin: 1em;
}

#copy a {
    color: inherit;
}

.sidebar {
    grid-row: 1 / 3;
    background-color: var(--sidebar);
}

#sidebar-left {
    grid-column: 1 / 2;
}

#sidebar-right {
    grid-column: 3 / 4;
}


.imposter-notice {
    margin-top: 50px;
    font-size: 80%;
    font-weight: 500;
    /* letter-spacing: 0.2em; */
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    padding: 20px;
    background: rgba(218, 69, 32, 0.5);
}

.imposter-notice p {
    margin: 5px;
}

.imposter-notice p::first-letter {
    font-weight: initial;
}

.imposter-notice code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px;
    border-radius: 5px;
    /* discourage visiting */
    cursor: text;
    user-select: none;
}