/* FONTS */

@font-face {
  font-family: ComicSans;
  src: url("/fonts/comic.ttf");
}

@font-face {
  font-family: ComicSansItalic;
  src: url("/fonts/comici.ttf");
}

@font-face {
  font-family: SegoePrint;
  src: url("/fonts/segoepr.ttf");
}

@font-face {
  font-family: SegoePrintBold;
  src: url("/fonts/Segoe%20Print%20Bold.ttf");
}

@font-face {
  font-family: ErasDemi;
  src: url("/fonts/Eras%20Demi%20ITC%20Regular.ttf");
}

/* CONTENT */
body {
  color: black;
  font-family: Tahoma;
  background-image: url(/mystudy/combat_initiation_images/doomspiresbackground.png);
  background-size: cover;
  background-attachment: fixed;
}

h1 {
  text-shadow: 2px 2px 4px #000000;
  font-family: SegoePrintBold;
  font-size: 75px;
  margin-top: 10px;
  margin-bottom: 10px;
}

h1, h2, h3 {
  text-align: center;
}

li {
  margin-top: 7px;
  margin-bottom: 7px;
}

main {
  display: block;
  border: 5px solid #ddd;
  background-color: rgba(228, 241, 253, 0.5);
  width: 80vw;
  margin: auto;
  padding: 5px;
  line-height: 1.5;
}

.intro {
  color: white;
  border: 3px solid #aaa;
  background-color: #b0c4de;
  width: 70vw;
  margin: auto;
  padding: 5px;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5);
}

.combat {
  display: flex;
  width: 70vw;
  margin: 20px auto 20px;
}

.combatchild {
  border: 3px solid #aaa;
  background-color: #eee;
  padding: 5px;
  margin: 0 auto;
  width: 90%;
  overflow: auto;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5);
}

.graybox {
  background-color: #000;
  color: white;
  font-family: Arial;
  border: 3px solid #e6e6e6;
  width: 95%;
  border-radius: 10px;
  margin: auto; 
  padding: 5px;
  overflow: auto;
}

.graybox h2 {
  color: orange;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-text-stroke: 1px #e08700;
}

.graybox p, .graybox li {
  -webkit-text-stroke: 1px #d9d9d9;
}

.title {
  border: 3px solid #aaa;
  border-bottom-style: hidden;
  background-color: #999;
  margin: auto;
  width: calc(90% + 10px);
  height: calc(4vh - 3px);
  font-size: 2.5vh;
  text-align: center;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5);
}

.title span {
  color: white;
  margin: 0;
  font-weight: bold;
}

.bosscard {
  color: white;
  border: 5px outset #828282;
  background-image: linear-gradient(to bottom, #8f8f8f, #5f5f5f);
  width: 60vw;
  padding: 5px;
  margin: 0 auto;
  font-family: ErasDemi;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5);
}

.gallerypic img {
  border: 3px dashed #252c30;
  width: 90%;
}

.gallerypic p {
  margin-top: 0;
  font-size: 12px;
  font-style: italic;
}

.spoilerreveal{
  cursor: pointer;
  font-weight: bold;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-image: linear-gradient(to bottom, #c4c4c4, #8a8a8a);
}

::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border: 3px outset #787878;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1
}

/* RETURN BUTTON */
.returnbutton {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 160px;
  height: 70px;
  background-image: url("https://music-by-margaruine.neocities.org/ReturnButtonNohover.png")
}

.returnbutton:hover {
  background-image: url("https://music-by-margaruine.neocities.org/ReturnButtonHover.png")
}