/*
    Project 1
    Filename: stylever1
*/

/* apply a natural box layout model to all elements */
* {
    box-sizing: content-box;
}

/* reset rules */
html, body, div, span, applet, object, iframe,
h1, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: "Times New Roman", serif;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html, body {
    line-height: 1;
    background: white;
    margin: 0 auto;
    font-family: Verdana, Geneva, sans-serif;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

ol, ul {
    list-style: none;
    text-align: center;
    font-size: 20px;
    line-height: 2em;
    padding-top: 5px;
}

/* page header */
header {
    background: mediumpurple;
    color: white;
    font-size: 48px;
    text-align: center;
    line-height: 1.5em;

}

/* main content */
article {
    line-height: 1.5em;
    padding-top: 13px;
    width: 60%;
    height: 100%;
    padding-left: 20%;
    padding-right: 20%;
    text-align: left;
    position: relative;
    background: lavenderblush;
    font-family: "Times New Roman", serif;
    font-size: 20px;
    overflow-x: hidden;
    div {
        line-height: 30px;
    }
}
.sidenav{
    height: 100%;
    padding-top: 2%;
    font-size: 25px;
    width: 200px;
    z-index: 1;
    top: inherit;
    left:0;
    position: fixed;
    background-color: lavender;
    overflow-x: hidden;
    border: 1px solid gray;
    font-family: "Times New Roman", serif;
    /*https://www.w3schools.com/howto/howto_css_fixed_sidebar.asp*/
}

article h2 {
    font-size: 25px;
    padding: 20px 0 10px 0;
    text-align: left;
    margin: 0;
    font-weight: bold;
}
article h3 {
    font-size: 25px;
    text-align: left;
    margin: 0;
    font-weight: bold;
}

.sidenav2{
    height: 100%;
    padding-top: 2%;
    font-size: 25px;
    width: 200px;
    z-index: 1;
    top: inherit;
    left:0;
    position: fixed;
    background-color: lavender;
    overflow-x: hidden;
    border: 1px solid gray;
    font-family: "Times New Roman", serif;
    /*https://www.w3schools.com/howto/howto_css_fixed_sidebar.asp*/
}
aside {
    border: 4px solid plum;
    line-height: 1.5em;
    padding-top: 20px;
    width: 60%;
    padding-left: 20%;
    padding-right: 20%;
    text-align: left;
    position: relative;
    background: lavenderblush;
    font-family: "Times New Roman", serif;
    font-size: 20px;
    overflow-x: hidden;
    div {
        line-height: 30px;
}
img{
    border: 3px solid lightpink;
}
    footer{
        height: 100%;
    }

}