/* BOOK COVERS CSS */

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
body {
  margin: 0;
  background-color: #FBEFF3;
}
/*heaader styles*/
header {
  font-weight: 800;
  font-style: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flow-root;
  padding: 25px 0;
  width: 80vw;
  margin: 0 auto;
}
nav {
  float: right;
}
.site-title, nav {
  width: 50%;
  float: left;
}
.site-title p { /* Gets rid of extra margin defaults from fonts*/
  margin: 0;
}
.bar {
  width: 100vw;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  background-color: #430D4B;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: right;
}
nav li {
  padding: 0;
  margin: 0 0 0 50px;
  float: left;
}
.current {
  color: #C874B2;
  text-decoration: underline #C874B2;
}

/***** Main Styles *****/
/*****MAIN STYLES*****/
main {
  width: 80vw;
  margin: 25px auto;
  display: flow-root;
}
.page-title p {
  width: 80vw;
  margin: 0px auto;
  padding-bottom: 60px;
  padding-top: 40px;
  font-size: 100px;
  font-family: "Righteous", sans-serif;
  font-style: normal;
  color: #22072E;
}
img {
  max-width: 100%;
}



/*****PSEUDO-CLASSES*****/
a {
  text-decoration: none;
  color: #FBEFF3;
}
a:visited {
  color: #FBEFF3;
}
a:hover {
  color: #C874B2;
}
