.container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    align-items: flex-start;
    justify-content: start;
    padding-inline: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

main h1 {
    font-size: 2.5em;
    font-weight: 600;
}

main h1 small {
    font-size: 0.5em;
    color: gray;
}

main h2 {
    font-size: 1.5em;
    border-inline-start: 4px solid white;
    padding-inline-start: 10px;
}

main {
    width: 100%;
    height: 100%;
    padding-inline: 30px;
    border-inline-start: 2px solid #333333;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
}
hr {
    color: #333333;
    border: 1px solid #333333;
}

#authoring {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 4px;
}

#authoring span {
    font-size: 1.2rem;
    color: gray;
}

#authoring #author {
    font-weight: bold;
}

#title {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

#instructions li {
    padding-block: 10px;
}

#instructions p.note {
    display: flex;
    font-size: 1em;
    color: gray;
    font-weight: 600;
    align-items: center;
}

#instructions p.note::before {
    content: "ⓘ\00a0\00a0";
    font-size: 2em;
}

#instructions p.note:hover {
    color: white;
}

#author, #weight {
    font-size: 0.5em;
    color: gray;
}