:root {
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: rgb(4, 134, 134);
    text-decoration: underline dotted;
}
a:visited {
    color: rgb(3, 55, 101);
}

h1, h2, h3, h4 {
    font-family: cursive;
}

body {
    display: grid;
    /*grid-template-columns: 21% 65%;*/
    grid-template-columns: 24rem 67rem; 
    background-image: url(../images/corkboard2.png);
    background-color: rgb(194, 125, 75);
}

nav {
    grid-column: 1;
    grid-row: 1/3;
    font-family: cursive;
    margin: 0px;
    padding: 3rem;
    background-image: url(../images/Paper5.png);
    background-size: 22rem;
    background-repeat: no-repeat;
}

main {
    grid-column: 2/3;
    min-height: 36rem;
    margin: 2rem;
    padding: 2rem;
    margin-top: 0px;
    line-height: 1.5rem;
    background-color: #fdf5e3;
    background-image: url(../images/lined-paper.png);
}
main > p {
    margin-left: 0.5rem;
}

footer {
    grid-column: 1;
    position: absolute;
    top: 36rem;
    margin: 2rem;
    margin-left: 0.5rem;
}

.update-box {
    background-color: aquamarine;
    font-size: 11px;
    top: 20rem;
    line-height: 1.1rem;
    text-align: left;
    position: absolute;
    height: 15rem;
    width: 17rem;
    overflow: scroll;
    padding: 1rem;
    transform: rotate(-3deg);
}
.update-box > ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.update-box > .date-reference{
    font-size: smaller;
    position: absolute;
    top: 1.7rem;
    right: 11rem;
}

.right-now {
    background-color: rgb(112, 212, 112);
    font-size: 11px;
    position: absolute;
    height: 15rem;
    width: 15rem;
    top: 17rem;
    left: 48rem;
    line-height: 1.1rem;
    text-align: left;
    margin: 2rem;
    padding: 0.5rem;
    transform: skew(1deg);
}
.todo-box {
    background-color: rgb(244, 185, 225);
    position: absolute;
    font-size: 11px;
    height: 15rem;
    width: 16rem;
    line-height: 1.1rem;
    overflow: scroll;
    padding: 1rem;
    right: 20rem;
    top: 20rem;
    transform: rotate(1deg);
}
.todo-box > ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.smaller-text {
    font-size: smaller;
}


.book-box {
    height: 22.5rem;
    width: 12.5rem;
    background-color: #dbcfc7;
    padding: 0.6rem;
    margin: 0.4rem;
    display: inline-block;
    vertical-align: top;
    overflow: scroll;
    overflow-wrap: normal ;
    justify-content: center;
    font-size: 14px;
}

.quotebook > li {
    font-size: 15px;
    padding: 0.4rem;
    list-style-type: square;
}

.articles-section > h2 {
    font-size: large;
}
.articles-section {
    line-height: 1.3rem;
}

.directory {
    line-height: 1.3rem;
    margin: 0px;
    padding: 0px;
}
.directory > h2 {
    font-size: larger;
}
.directory > h3 {
    font-size: medium;
}

.top {
    position: fixed;
    right: 1.3rem;
    bottom: 0.6rem;
    padding: 0.2rem;
    background-color: #fdf5e3;
}

blockquote {
    border-left: black dashed 0.15rem;
    padding-left: 0.8rem;
    background-color: rgb(128, 128, 128, 0.1);
}