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

@font-face {
     font-family: "lesbian";
     src: url(/fonts/MotherNatureisaLesbian-Regular.otf);
     }
     
@font-face {
     font-family: "new_romantic";
     src: url(fonts/new_romantic.ttf);
     }
     
@font-face {
     font-family: "adventures";
     src: url(fonts/OldSchoolAdventures.ttf);
     }
     
@font-face {
     font-family: "bluelines";
     src: url(fonts/Bluelines.ttf);
     }
     
@font-face {
     font-family: "adorable_doll";
     src: url(fonts/AdorableDoll.ttf);
     }

body {
  background-color: black;
  background-image: url("imgs/bgs/misc018teal.png");
  color: #FFEAA8;
  font-family: Tahoma;
  font-size: 11pt;
  height: 100%;
  margin: 0;
}

a {
  color: #C2DBEF;
}

a:hover {
  color: #B4C45B;
}

b {
  color: #C2DBEF;
}

ul { 
  list-style-type: "✨ "; 
}

h1 {
  font-family: "adorable_doll";
  font-size: 33pt;
  margin: 0;
}
h2 {
  font-family: "adventures";
  font-size: 14pt;
}
h3 {
  font-family: "adorable_doll";
  font-size: 16pt;
}

/* a:visited {
  color: #DB4348;
} */

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.content {
  width: 70%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  background: #000;
  color: #FFEAA8;
  border: 30px solid transparent;
  padding: 15px;
  border-image: url(/imgs/divs/starborder.gif) 33% round;
}

.content img {
  max-width: 100%;
}

.nav {
  text-align:center;
  margin: 0;
  padding: 0;
}
.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-bottom: 3rem;
  display: block;
}
.nav li a {
  display: block;
  float: left;
  font-family: "adventures";
  font-size: 12pt;
  background-color: black;
  color: #BF9341;
  border: 5px solid #BF9341;
  text-align: center;
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-decoration: none;
}

.nav a:hover {
  color: #BF9341;
  background-color: #FFEAA8;
}

.text {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}


.row {
  float: left;
  width: 100%;
  border: 1px solid green;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.imgleft {
  float: left;
  width: 30%;
  border: 1px solid red;
}

.textright {
  float: left;
  width: 68%;
  border: 1px solid yellow;
}



/* THE ONLY MARQUEE THAT WORKED https://www.bennadel.com/blog/4536-creating-a-marquee-effect-with-css-animations.htm */

.marquee {
			border: none ;
			display: flex ;
			overflow: hidden ;
			white-space: nowrap ;
			width: 100% ;
		}
		.marquee_item {
			animation-duration: 22s ;
			animation-iteration-count: infinite ;
			animation-name: marquee-content ;
			animation-timing-function: linear ;
			padding: 0px ;
		}
		.marquee:hover .marquee_item {
			animation-play-state: paused ;
		}

		/**
		* BOTH of the marquee items are going to be translating left at the same time.
		* And, once each of them has translated to -100%, they will both snap back into
		* place, making it seem as if they are continuously scrolling.
		*/
		@keyframes marquee-content {
			from {
				transform: translateX( 0% );
			}
			to {
				transform: translateX( -100% );
			}
		}
