body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #03081a;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: #fceaff;
}

* {
    box-sizing: border-box;
}


#container {
    max-width: 900px;
    margin: 0 auto;
    /* this centers the entire page */
}

#container.wider{
    max-width:1100px;
}


#container a {
    color: #80b3eb;
    font-weight: bold;
    /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
}


#flex {
    display: flex;
}


/* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
aside {
    background-color: #0b1548;
    width: 210px;
    padding: 20px;
    font-size: smaller;
    /* this makes the sidebar text slightly smaller */
}



/* this is the color of the main content area,
    between the sidebars! */
main {
    background-color: #253a6e;
    flex: 1;
    padding: 20px;
    order: 2;
}


footer {
    background-color: #080e31;
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}

h1,
h2,
h3 {
    color: #80b3eb;
}

h1 {
    font-size: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
    padding: 0px;
    line-height: 1.4;

}

p {
    line-height: 1.7;
    +p {
        margin-top: 14px;
    }
}

.subtext {
    margin-left: 14px;
    margin-bottom: 21px;
}


.box {
    background-color: #09072e;
    border: 1px solid #80b3eb;
    padding: 10px;
    width: 50%;
    line-height: 1.4;
}


#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}

.index {
    background-color: #09072e;
    border: 1px solid #80b3eb;
    margin-bottom: 10px;
    padding: 14px;

}

.description {
    max-width: 410px;
    margin-right: 21px;
    font-size: 17px;
    letter-spacing: 3.5px;
}

.skinny {
    line-height: 0.9;
    font-size: 63px;
}

.book-reviews {
    background-color: #09072e;
    border: 1px solid #80b3eb;
    margin-top: 11px;
    padding: 7px;
}

.book-reviews>h3 {
    margin-bottom: 7px;
}

.book-reviews>img {
    margin-left: 7px;
    height: 100%;
}

img{
    max-width:600px;
}

.blog-post{
     background-color: #09072e;
    border: 1px solid #80b3eb;
    margin-top: 11px;
    padding: 7px;

}

.blog-post>div>p{
    margin:7px;
}

.blog-post>div>h3{
    margin:7px;
}

a:hover{
    filter: invert(100%);
}

.painting{
    max-width:350px;
    object-fit: contain;
    margin:7px;
}

.artists {
    flex-wrap: wrap;
     display: flex;
}

.icon {
    width:170px;
    padding-bottom:7px;
}

#change{
    max-height:280px;
    overflow-y: scroll;
}

