* {
    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;
}

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 {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    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 p {
    color: brown;
    font-size: large;
}

.description {
    padding: 10px;
    margin: 0;
    justify-content: flex-start;
    position: relative;
    isolation: isolate;
}

.description::after {
    content: '';
    background-image: url(paper-3-TEX.png);
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.92;
}

/*Main Images*/
.radius {
    border: 16px solid #72bd03;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-radius: 7px;
}

.image {
    padding: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
    margin: 0;
    position: relative;
    isolation: isolate;
}

.image::after {
    content: '';
    background-image: url(paper-3-TEX.png);
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.92;
}

main img {
    width: 748px;
}

main h3 {
    color: brown;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
}

.image p {
    margin: 0;
}

/*Main Links*/
main p a:link {
    color: green;
}

main p a:visited {
    color: green;
}

main p a:hover {
    color: green;
}

main p a:active {
    color: green;
}