/* 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." */

:root {
  
  /*coloring*/
  --main-color: #3A583A;
  --secondary-main-color: #7E8D7B;
  --hover-secondary-color: #6b7868;
  --highlight-color: #F8F4AD;
  --lighter-highlight-color: #FFFDDD;
  --accent-color: #DC6F6F;
  
  /*sizing*/
  --default-font-size: 15px;
  --nav-font-size: 20px;
}

.book {
  background-image: url('/images/old_book_cover.png');
  background-repeat: no-repeat;
  
  
  /*making the positioning/sizing of the book*/
  width: 40vw;
  height: 850px; /*DO NOT MAKE RELATIVE!! bad :< */
  background-size: contain;
  margin-left: 5vw;
}

.cover-inside {
  padding: 3vw;
  color: white;
  font-family: Verdana;
  font-size: var(--default-font-size);
  
}

nav {
  /*positioning*/
  float: right;  
}

nav div {
  background-color: var(--secondary-main-color);
  text-align: center;
  padding-bottom: 15px;
  padding-top: 10px;
  height: 15px;
}

#art-link:hover, #story-link:hover, #tbd:hover {
  background-color: var(--hover-secondary-color);
}

#story-link {
  position: relative; /*must be in each div in the nav*/
  top: -800px;
  left: -46.2vw; /*FIXME: make it so the tab doesn't clip into the book*/
  
  /*visuals*/
  width: 8vw;
}

#art-link {
  position: relative; /*must be in each div in the nav*/
  top: -756px;
  left: -46.2vw; /*FIXME: make it so the tab doesn't clip into the book*/
  
  /*visuals*/
  width: 7.6vw;
}

#birds {
  position: relative; /*must be in each div in the nav*/
  top: -700px;
  left: -46.2vw; /*FIXME: make it so the tab doesn't clip into the book*/
  
  /*visuals*/
  width: 5vw;
}

/*changing up links*/
nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: var(--nav-font-size);
}