body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Set cover background to books.jpg */
  background-image: url("books.jpeg");
  margin: 0;
}

div {
  width: 100%;
  /* Set background to 75 percent transparent in a tomato redish color*/
  background: rgba(255, 99, 71, 0.55);
  /* background: rgba(0, 0, 0, 0.5); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}

h1 {
  /* font-family: 'DM Mono', monospace; */
  font-family: "Tapestry", cursive;
  font-size: 6rem;
  color: whitesmoke;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;

}

section {
    text-align: center;
    font-family: "DM Mono", monospace;
    /* slightly darked whitesmoke */
    color: #f5f5f5;
    /* color: slategray; */
    /* Text shadow */
    text-shadow: 2px 2px 4px #000000;
}

p {
    font-family: "DM Mono", monospace;
    color: #f5f5f5;
    text-align: center;
    font-size: 1rem;
}

@media (max-width: 600px) {
    div {
        padding: 0;
    }
    section {
        padding: 0.5rem;
    }
    h1 {
        font-size: 3rem;
        padding: 0.5rem;
    }
    p {
        font-size: 0.7rem;

    }
  }
  