/* --- @font-face Rules --- */
@font-face {
  font-family: 'Andala';
  src: url('/fonts/Andala.ttf') format('truetype');
}

/* --- @font-face Rules --- */
@font-face {
  font-family: 'Anhattan';
  src: url('/fonts/Anhattan.otf') 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');
}

@font-face {
    font-family: 'changes';
    src: url('/fonts/changes.ttf') format('truetype');
}

@font-face {
    font-family: 'heman';
    src: url('/fonts/heman.otf') format('truetype');
}
/* --- Element Selectors --- */
h1 {
  text-align: center;
  font-size: 90px;
  font-family: 'Andala', Arial, sans-serif;
  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-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
}

* {
  box-sizing: border-box;
}


/* --- Class Selectors --- */
.column {
  width: 80%;
  height: auto;
  border-width: 5px;
  border-color: #9ccbb3;
  border-style: solid;
  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: #9ccbb3; 
  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: #9ccbb3; 
  border-width: 20px;
  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: #9ccbb3;
      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: #9ccbb3;
  border-style: outset;
  height: auto;
  max-height: 500px;
  overflow-y: scroll;
  margin: 5px auto 75px 0px;
  text-align: left;
}

.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: #9ccbb3; 
  border-color: #a68431;
  border-width: 20px;
  margin-bottom: 0;
  margin-top: 0;
}

h3 {
  text-align: center;
  font-size: 45px;
  font-family: 'heman', Arial, sans-serif;
  border-width: 0;
  margin: 20px;
  font-weight: normal;
  color: #006697;
}

.img1 {
  position: absolute; 
  width: 110px; 
  height: auto; 
  left: 130px; 
  top: 0px;
}

.img2 {
  position: absolute; 
  width: 120px; 
  height: auto; 
  left: 350px; 
  top: 50px;
}

.img3 {
  position: absolute; 
  width: 110px; 
  height: auto; 
  left: 900px; 
  top: 40px;
}

.img4 {
  position: absolute; 
  width: 110px; 
  height: auto; 
  left: 1100px; 
  top: 0px;
}

/* --- 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: #1991a2;
}

::-webkit-scrollbar-thumb {
  background: #006697;
}

::-webkit-scrollbar-thumb:hover {
  background: #006697;
}


/* --- Combinators / Complex Selectors --- */
.row:after {
  content: "";
  display: table;
  clear: both;
}
