main {
    display: grid;
    grid-template-areas: 
        "a a b"
        "a a p"
    ;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 3em auto;
    padding: 10px;
    background-color: blanchedalmond;

}
main > *{
    padding: 1%;
}

main > section:last-child {
    padding-bottom: 2%;
}

.main {
    grid-area: a;
    min-height: 400px;
}

.picture {
    grid-area: p;
    padding: 0px;
}

.alt {
    grid-area: b;
    white-space: pre-line;
    text-align: center;
}

.d-top {
    border-top: 2px dotted brown;
}
.d-btm {
    border-bottom: 2px dotted brown;
}
.d-lft {
    border-left: 2px dotted brown;
}
.d-rht {
    border-right: 2px dotted brown;
}

marquee {
    padding: 0px;
}


/* Copy/paste stuff */
* {
    font-family: 'Courier New', Courier, monospace;
}
/* HEADER */
header {
    height: 10%;
    border-bottom: 4px solid brown;
    margin-bottom: 0%;
    display: flex;
    flex-flow: row wrap;
}
header h1 {
    size: 6.5%;
    color: brown;
    margin-left: 1%;
}
/* NAV */
nav {
    margin-top: 0%;
    border-bottom: 2px solid brown;
    display: flex;
    flex-direction: row;
}
nav a {
    border-right: 2px solid brown;

    padding: 0% 1%;

    text-decoration: none;
    color: black;
    display: inline-block;
}
nav a:last-child {
    border-right: none;
}
nav a:hover {
    background-color: blanchedalmond;
}
/* FOOTER */
footer {
    height: 20%;
    border-top: 4px solid brown;

    display: flex;
    flex-flow: row wrap;
}
footer section {
    padding: 2%;
    /* margin: 2%; */
    border-right: 2px solid brown;
}
footer section:last-child {
    border: none;
}
footer section h1 {
    font-size: 1em;
}
footer ul {
    list-style-type: '->';
}
footer a {
    text-decoration: none;
    color: black;
}
footer a:hover {
    color: brown;
}

button {
    background-color: white;
    border: solid black 1px;
    border-radius: 2.5px;
    color: black;
    margin: 2%
}

button:hover {
    background-color: blanchedalmond;
}