* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 10px;
    font-family: 'Baskerville', 'Baskerville Old Face', 'Times New Roman', serif;
    color: #222;
}

body{
    
}


header {
    width: 100%;
    overflow: clip;
    margin: auto;
}

header img{
    border-bottom: solid 2px darkslategray;
}

main{
    margin: auto;
    width: 100rem;

}

h1, h2, h3, h4 {
    font-family: 'Amaranth', sans-serif;
    color: darkslateblue;
    margin: 4rem 0 1rem 0;
    font-style: italic;
}

h1{
    font-size: 7.9rem;
    line-height: 11.5rem;
}

h2{
    font-size: 6.2rem;
    line-height: 9.2rem;
}

h3{
    font-size: 4.9rem;
    line-height: 7.4rem;
}

h4{
    font-size: 3.8rem;
    line-height: 5.9rem;
}

section{
    margin: 3.2rem 0 3.2rem 0;
}

section+section{
    margin-top: 7.6rem;
}

section article{
    font-size: 3rem;
    line-height: 4.2rem;
}

section figure + p::first-letter,
section h1 + p::first-letter,
section h2 + p:first-letter {
    color: black;
    background-color: lavenderblush;
    font-size: 7.9rem;
    display: block;
    padding: 2.8rem 1.6rem 1.6rem 1.6rem;
    line-height: 6.2rem;
    margin: 0.4rem 1.2rem 0 0;
    float: left;
    border: solid 1px darkslateblue;
}

article{
    margin: 4.8rem 0;
}

article p + p::first-letter {
    margin-left: 6.2rem;
}

section article p span.new,
section article p.new,
section article aside p{
    color: darkslategray;
    font-style: italic;
    background-color: lavenderblush;
}

section article aside {
    margin: 1.6rem 0;
    background-color: lavenderblush;
    padding: 0.4rem 0.8rem;
}

section article p span.new::before,
section article p.new::before {
    content: "\2712   ";
}

section article blockquote{
    padding: 0.8rem 1.6rem;
    margin: 1.6rem 0;
    background-color: lavenderblush;
    border: solid 1px;
}

section article blockquote p.cite{
    font-style: italic;
    font-size: 2.8rem;
    margin: 1.6rem 0 0 0;
}

figure {
    display: block;
    margin: 1.6rem 0 3.2rem 0;
}

figure+figure{
    margin: 5.6rem 0;
}

figure img{
    border: solid 1px darkslateblue;
}

figure figcaption{
    font-size: 2.8rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    line-height: 4.2rem;
    color: darkslateblue;
}

section article a{
    color: blue;
}

section article a:visited{
    color: purple;
}

section article a:hover,
section article a:focus{
    background-color: darkslateblue;
    color: white;
}

section article a.in::after {
    content: "\2021";
}

section article abbr{
    cursor:help;
}

section article ul {
    list-style-type: "\00B6 ";
    list-style-position: outside;
}

section article ul ul{
    margin-left: 4.8rem;
}

ul li {
    margin: 2rem 0 2rem -0.8rem;
    padding: 0 0.8rem;
}

section article dl{
    margin: 3.2rem 0;
}

section article dt{
    font-weight: bold;
    margin: 1.6rem 0 0.4rem 0;
}

footer {
    font-size: 3rem;
    margin: 7.2rem 0 0 0;
    padding: 4.8rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-image: url("/images/footer.jpg");
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer ul {
    width: 48rem;
    list-style-type: none;
    text-transform: capitalize;
    margin-left: 24rem;
}

footer ul a {
    padding: 0.5rem;
    background: white;
    color: darkslategray;
    text-decoration: none;
}

footer ul a:hover,
footer ul a:focus{
    background: darkslateblue;
    color: white;
    text-decoration: underline;
}


