* {
    box-sizing: border-box;
}

body {
    background-image: url(Unsaved9.png);
    background-repeat: repeat-y;
    background-attachment: scroll;
    background-size: cover;
    background-color: #ffffcc;
    margin: 0;
}

#layout {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-gap: 5px;
    grid-template: "header" auto "main" auto "footer" auto / auto;
}

header {
    background-color: brown;
    grid-area: header;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    height: auto;
}

main {
    grid-area: main;
    padding: 10px;
    position: relative;
    isolation: isolate;
}

main::after {
    content: '';
    background-image: url(paper-3-TEX.png);
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.92;
}

footer {
    background-color: brown;
    color: #7ACC00;
    grid-area: footer;
    padding: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

/*Header Navigation*/
header nav ul {
    list-style: none;
    display: inline-block;
}

header nav ul {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

header nav ul li {
    font-size: 1.25em;
}

/*Header Links*/
header a:link {
    color: #9CCC00;
}

header a:visited {
    color: #9CCC00;
}

header a:hover {
    color: #9CCC00;
}

header a:active {
    color: #9CCC00;
}

/*Main*/
main h1 {
    color: #7ACC00;
    margin: 0;
    font-size: 100px;
    text-align: center;
}

main p {
    color: brown;
    font-size: large;
}

main p a:link {
    color: green;
}

main p a:visited {
    color: green;
}

main p a:hover {
    color: green;
}

main p a:active {
    color: green;
}

/*Main Updates*/
.radius {
    border: 16px solid #72bd03;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-radius: 7px;
}

.update {
    margin: 0;
    flex-direction: column;
}

main h3 {
    color: #7ACC00;
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 25px;
    text-indent: 6px;
}

.update-summaries {
    margin-bottom: 0;
    margin-top: 0;
    justify-content: flex-start;
}

/*Main Updates Unordered List & List Items*/
main ul {
    margin-bottom: 18px;
    margin-top: 0;
    padding-left: 20px;
}

main ul li {
    color: brown;
    font-size: large;
    list-style-type: none;
}

/*Main Stamps*/
.stampbox {
    margin-top: 18px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

main div img {
    height: 56px;
}