/* 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;
}

.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;
}

.title {
  border: 3px solid #aaa;
  background-color: #999;
  padding: 0;
  margin: 0 auto;
  width: calc(90% + 10px);
  height: 3vh;
  text-align: center;
}

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

/* 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")
}