/* 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: #000 url('https://i.pinimg.com/originals/d3/83/1c/d3831c7f0d93431f8aabad0f115f31e1.gif');
  color: black;
  font-family: Verdana;
  text-align: center;
}

 /* link styling */
a:hover {
  font-style: italic;
  color: darkgrey;
  text-decoration: none;
}

a:visited {
  color: green;
}

/* this is a box thing. like the body where the chapters are listed in */

.container {
  border-width: 2px;
  border-style: dashed;
  border-color: #fff;
  height: 320px;
  width: 650px;
  padding: 16px;
  margin: 25px;
  color: #000;
  position: relative;
  background-color: #f2f2f2;
  left: 25%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chapters {
  border-width: 2px;
  border-style: dashed;
  border-color: #fff;
  height: 350px;
  width: 650px;
  padding: 5px;
  margin: 20px;
  font-size: smaller;
  color: #000;
  position: relative;
  background-color: #f2f2f2;
  left: 25%;
  overflow-y: scroll;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile {
  border-width: 2px;
  border-style: dashed;
  border-color: #fff;
  height: 200px;
  width: 250px;
  position: fixed;
  padding: 20px;
  margin: 30px;
  color: #000;
  background-color: #f9f9f9;
  left: 75%;
  bottom: 50%;
  z-index: 13;
  text-align: left;
}