/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #FFFAE8;
  color: black;
  margin: 15px 200px;
  text-align: center;
  }

h1 {font-family: monaco, Consolas, Lucida Console, monospace; font-size: 26px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px;}

h2 {font-family: monaco, Consolas, Lucida Console, monospace; font-size: 20px; font-style: normal; font-variant: normal; font-weight: 500; line-height: 26.4px;}

h3 {font-family: monaco, Consolas, Lucida Console, monospace; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 26.4px;}

p { font-family: Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; }

blockquote { font-family: monaco, Consolas, Lucida Console, monospace; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; }

.center { display: block; margin-left: auto; margin-right: auto; width: 25%; }

.blogpic { display: block; margin-left: auto; margin-right: auto; width: 50%; }

/* Book covers homepage display */ 
.covers { display: block; margin-left: 0px; margin-right: 0px; width: 100%; }

/* "Currently reading" homepage display columns */ 
.container {
  display: flex;
}

.left-column {
  flex: 1;
}

.right-column {
  flex: 2;
  margin: 10px 50px;
  height: 300px;
}

/* "My Top 4" homepage display columns */ 
.top4-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.column1 {
  flex: 1; 
}

.column2 {
  flex: 1; 
}

.column3 {
  flex: 1; 
}

.column4 {
  flex: 1; 
}