/* --- @font-face Rules --- */
@font-face {
  font-family: 'BGTHC';
  src: url('/archives/red/fonts/BGTHC.ttf') format('truetype');
}

@font-face {
  font-family: 'Heavy Gothik';
  src: url('/archives/red/fonts/HeavyGothik.ttf') format('truetype');
}

@font-face {
  font-family: 'Glamour';
  src: url('fonts/Glamour.ttf') format('truetype');
}


/* --- Element Selectors --- */
h1 {
  text-align: center;
  font-size: 90px;
  font-family: 'Heavy Gothik', Arial, sans-serif;
  text-shadow: -5px 0 black, 0 6px black, 1px 0 black, 0 -1px black;
  margin: 0;
}

p {
  margin-top: 0em;
  margin-bottom: 0em;
  margin: 0;
}

h2 {
  font-family: 'Times New Roman', Arial, sans-serif;
  font-size: 25px;
  color: violet;
  text-shadow: 0px 0 black, 0 2px black, 1px 0 black, 0 0px black;
  display: inline-block;
  margin: 0 5px 0 5px;
}

b {
  color: #eb28ba;
  text-shadow: 0px 0 black, 0 0px black, 0px 0 black, 0 1px black;
}

img {
  text-decoration: none;
  padding: 5px;
}

body {
  background-image: url('/archives/postmod/images/swirlbg.jpg');
  background-repeat: repeat-y;
  background-size: 100% 100%;
  background-color: black;
}

* {
  box-sizing: border-box;
}


/* --- Class Selectors --- */
.column {
  width: 80%;
  height: auto;
  border-width: 5px;
  border-image: url('/archives/postmod/images/sparkleback.gif') 10 stretch;
  border-color: thistle;
  border-style: solid;
  background-image: url('/archives/postmod/images/books2.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.headbox {
  width: 95%; 
  height: 30px; 
  background-color: thistle; 
  margin-left: auto; 
  margin-right: auto; 
  border-style: outset;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
}

.arrow {
  font-family: 'Times New Roman', Arial, sans-serif;
  font-size: 25px;
  color: purple;
  margin-top: 0em;
  margin-bottom: 0em;
  text-shadow: 0px 0 black, 0 0px black, 1px 0 black, 0 0px black;
  cursor: pointer;
}

.titlediv {
  background-color: thistle; 
  border-width: 20px;
  border-image-source: url('/archives/mod/images/borders/stars.webp');  
  border-image-slice: 50 fill; 
  border-image-repeat: repeat; 
  border-image-width: 20px;
  margin-top: 0;
  padding: 0 0 0 0;
}

.sidecolumn {
      width: 10%; 
      float: left;
      height: auto;
      background-color: thistle;
      border-style: outset;
      text-align: center;
      margin: 5px 10px 150px 25px;
}

.album {
  height: 110px; 
  width: auto; 
  border-style: outset;
  margin-top: 10px;
  margin-bottom: 10px;
}

.textbox {
  width: 79%;  
  background-color: thistle;
  border-style: outset;
  height: auto;
  max-height: 500px;
  overflow-y: scroll;
  margin: 5px auto 75px 0px;
}

.signature {
  font-family: Glamour;
  font-size: 25px;
  color: violet;
  margin-top: 0em;
  margin-bottom: 0em;
  text-shadow: 0px 0 black, 0 2px black, 1px 0 black, 0 0px black;
  display: inline-block;
  margin: 0 10px;
}

.thatdiv {
  background-color: thistle; 
  border-width: 20px;
  border-image-source: url('/archives/mod/images/borders/stars.webp');  
  border-image-slice: 50 fill; 
  border-image-repeat: repeat; 
  border-image-width: 20px;
  margin-bottom: 0;
  margin-top: 0;
}

h3 {
  text-align: center;
  font-size: 90px;
  font-family: 'Heavy Gothik', Arial, sans-serif;
 text-shadow: 1px 1px 2px rgba(0, 0, 0, 0);

   background-image: url('/archives/postmod/images/sparkleback.gif');
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  border-width: 0;
  margin: 20px;
}

/* --- Pseudo-classes and Pseudo-elements --- */
a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  transform: scale(1.2);
}

::selection {
  background-color: pink;
}

::selection {
  color: black;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: thistle;
}

::-webkit-scrollbar-thumb {
  background: #ff94a7;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff94a7;
}


/* --- Combinators / Complex Selectors --- */
.row:after {
  content: "";
  display: table;
  clear: both;
}
