html {
    height: 100%;
}
body {
    font-family: sans-serif;
    background-color: #feea84;
    height: 100%;
    display: grid;
    grid-template-rows: 6rem 1fr;
    grid-row-gap: 0;
    padding: 0;
    margin: 0;
    justify-items: center;
}
a {
    color: inherit;
    text-decoration: inherit; /* no underline */
}
.header {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
span.headerEntry {
    margin: 1rem;
    font-weight: bold;
    letter-spacing: .2rem;
    text-transform: uppercase;
    width: 12ch;
    font-size: 0.8rem;
    text-align: center;
}
img.logo {
    max-height: 3rem;
    border: 1px solid #888;
    border-radius: 0.5rem;
}
.main {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 1rem;
    margin: 2rem;
    margin-top: 0;
    width: 60%;
    color: #000;
    padding: 2rem;
}
span.title {
    font-size: 3rem;
    margin-top: 4rem;
    letter-spacing: .2rem;
    justify-content: center;
    display: flex;
}
span.updateDate {
    font-size: 0.8rem;
    letter-spacing: .2rem;
    justify-content: center;
    display: flex;
}
div.content {
    margin: 2rem;
}
span.textHeader {
    font-size: 1.3rem;
    display: flex;
    margin-top: 1rem;
}