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


html {
  background-image: url("/TTRPG/WoD/Mage_The_Ascension/Silk_background_Tiled.png");
  background-repeat: repeat;
  
  background-size: 100vmin;
}

body {
  color: #FFFFFF;
  font-family: "Aboreto" bold;
  padding-left: 20px;
  padding-right: 20px;
}
.aboreto-regular {
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-style: normal;
}
.div-home {
  border: 32px solid black;
  border-color: 32px solid black round;
  background-color:#c79f8bde;
  margin:auto;
  width:
     clamp(380px,50%,820px);
  align-items: center;
  font-family: "Aboreto";
  
}

/*BOOK TAB STYLE*/

.book {
  
  font-family: "Aberto";
  height:95vh;
  width: clamp(56vh,60%, 174vh);
  align-items: right;
  margin: 1%;
  
}

/* Style the tab */
.tab {
  float: right;
  border: 1px solid #ccc;
  width: 30%;
  height: 65%;
  box-sizing: border-box;
}


.bottom {
  align-items: bottom;
  height: 100%;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.back {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 24px;
  color: white;
  width: 30%;
  padding: 22px 6%;
}

/* Style the buttons inside the tab */
.tablinks {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 24px;
  margin: 50px 0;
  color: white;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #01F;
}

.tab back:hover {
  background-color: #01F;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #000;
  
}

/* Style the tab content */
.tabcontent {
  float: left;
  scroll-behavior: smooth;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 65%;
  border-left: none;
  height: 95%;
  box-sizing: border-box;
}


.tab-page {
  box-sizing: border-box;
  margin: 10px;
  overflow-y: scroll;
  resize: none;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

}

