:root {
  --bg-color: #CDEBF7;
  --bg-color2: rgb(246,245,240);
  --text-color: black;
  /*3E4095 5CF4E7 CDEBF7 35BEC7 007842 00A759 00783A*/
  --link-color: #007842;
  --btn-bg-color: #35BEC7;
  --btn-text-color: white;
  --btn-outline-color: #35BEC7;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 0px 100px;
  
}
h1 {
  color: var(--text-color); font-family:monospace; font-size: 2.5rem; text-align: center;
}
h2 {
  color: var(--text-color); font-family: monospace; font-size: 1.8rem; text-align: center;
}
p,ul,ol,.chapters {
  color: var(--text-color); font-family: "Gill Sans"; font-size: 1.5rem; letter-spacing: 0.05em; padding: 1px 10px; text-align: justify; line-height: 1.25em; list-style-position: inside;
}
.chapters, .chapters > p {
  
  text-align: center;
  font-size: 1.2rem;
}

table {
  color: var(--text-color); font-family:arial; font-size: 0.9em; letter-spacing: 0.05em;
}
h3 {
  color: black; bottom:0; font-family:monospace; font-size: 1.5rem; width: 100%; text-align: center;
}
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  text-decoration: underline;
}
h3 > a {
  font-weight: 600;
  
}
button {
 
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--btn-bg-color);
    color: var(--btn-text-color);
    border: 5px solid var(--btn-outline-color);
    border-radius: 111px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
#share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px; /* icon needs less horizontal room than text */
}

#share svg {
  display: block;
}
.quote {
  margin-top: 50px;
  margin-bottom: 50px;
}
.quote > p {
  font-size: 1.5rem;
  text-align: center;
}
.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.buttons div{
  padding: 10px;
}
@media (hover: hover) and (min-width: 992px)  {
  button:hover {
    background-color: transparent;
    color: var(--text-color);
    border: 5px solid var(--text-color);
  }
}
@media screen and (max-width: 600px) {
  body {
    padding: 0px 25px
  }
  p {
    font-size: 1.2rem; letter-spacing: 0.05em; 
    text-align: left;
  }
  
}
