body {
  background-color: #acfcff;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  font-family: Georgia, serif;
}

h2, h3, h4{
  text-align: center;
}

p { 
    max-width: 55%;
    margin: 1em auto;
    text-align: center;
    line-height: 1.4;
}

p2 {
    max-width: 55%;
    margin: 1em auto;
    text-align: left;
    line-height: 1.4;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #000000;
    padding: 35px;
    background-color: #fffdfa;
}

div {
    border: 1px solid #000000;
    padding: 25px;
    background-color: #ebffe6;
}

li{
    list-style-type:none;
    color:#0014c4;
    display:inline-block;
    font-family:Georgia, serif;
    margin: 0 10px;
}

.comments {
    display: flex; /*I wanted to figure out how I would be able to make my comments appear on the same 
    line so I jumped ahead a bit and looked up how flex box's work*/
    justify-content: space-between;
    margin: 2em auto;
}

.comments p {
    width: 45%;
    text-align: left;
    padding: 15px;
    background: #fffdfa;
    border: 1px solid #000
}

.left {
  text-align: left;
}

.right {
    text-align: right;
}

.logo img {
    max-width: 120px;
    height: auto;
}

.chapters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.card {
    background-color:#ebffe6;
    border: 1px solid #000;
    padding: 25px;
    width: 250px;
    text-align: center;
}