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

:root{
  
    --peach: #FFE5DE;
    --apricot:#FFA086;
    --lightercot: #FFC7B8;
    --salmon: #F5C7BC;
    --brightsalmon: #FCC4BD;
    --rust: #F25016;
    --raspberry: #9E1955;
    --edgeworth: #9C133E;
    --betterpink: #FF6DB0;
    --burgundy: #5F0424;
    --sherry: #40262C;
    --sherryLite: #71333F;
    --bluewhite: #E9F7F3;
    
    /*DARKMODE*/
    
    --moonyellow: #C3A60B;
    --yolkyellow: #F1D334;
    --offwhiteDM: #EAE3BD;
    --crow: #1F1C2D;
    --bluegrey: #423C5F;
  
  --beige: #efecdd;
  --betterbeige: #e7e3cb;
  --khaki: #dcd0ad;
  --cafe: #21140a;
  --wood: #432d1c;
  --offwhite: #faf4f1;
  --burnt: #d16510;
  --darkburnt: #6d3000;
  --seafoam: #addcd0;
  --nblue: #27c7ae;
  --wallowblue: #0EB095;
}

@font-face{
	font-family: "oct";
	src: url('/OctosquaresBold.ttf') format("truetype");
}
@font-face{
	font-family: "octthin";
	src: url('/OctosquaresRegular.ttf') format("truetype");
}
@font-face{
	font-family: "octdemi";
	src: url('/OctosquaresDemiBold.ttf') format("truetype");
}

@font-face{
	font-family: "octhead";
	src: url('/OctosquaresBlack.ttf') format("truetype");
}

img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

video{
  max-width: 100%;
  max-height:100%;
}

body {
  background-image:url('/lightmode.PNG');
	background-color:var(--peach);
	color: var(--burgundy);
  font: 22px oct;
  align-items: center;
  text-align: center;
}

a:link{
  color: var(--wallowblue);
}

a:visited{
  color: var(--rust);
}

a:hover{
  color: var(--raspberry);
}

.flex{
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

h1 {
  text-align: center;
  font: 50px octhead;
  color: var(--rust);
  line-height: .95;
}

h2 {
  text-align: center;
  font: 28px octdemi;
  color: var(--sherryLite);
}

.galtext {
  text-align: center;
  font: 22px oct;
  color: var(--peach);
  padding: 3px;
}

.hometitlecontainer {
  background-color: var(--lightercot);
  max-width: 900px;
  margin:0 auto;
  padding: 15px;
  /*border: dotted 8px var(--nblue);*/
  border-radius: 30px;
  text-align: center;
}

.hometitlecontainer h2{
  max-width: 85%;
  margin: auto;
  position: relative;
}

.titlecontainer {
  background-color: var(--peach);
  max-width: 800px;
  max-height: 150px;
  margin:0 auto;
  padding: 1px;
  border: dotted 5px var(--apricot);
  border-radius: 20px;
  text-align: center;
}

.aside{
  text-align: center;
  font: 24px oct;
  line-height: 30%;
  position: relative;
  margin: 0 auto;
  background-color: rgba(245, 199, 188, .6);
  max-width: 30%;
  padding: 1px;
  border: dotted 3px var(--brightsalmon);
  border-radius: 22px;
}

.navsidebar{
  display: block;
  position: relative;
  float: left;
  width: 300px;
  margin: 0 5px 0 0;
}

.homebtn{
  background-color: var(--peach);
  max-width: 100px;
  margin: auto;
  /*float: left;*/
  padding: 5px;
  border: dotted 3px var(--apricot);
  border-radius: 7px;
  position: relative;
}

.side{
  max-width:500px;
  max-height:500px;
  position: relative;
  margin: 0 auto;
  float: left;
}

.homecontainer {
  text-align: center;
 	max-width: 800px;
	margin: 0 auto; 
	background-color: var(--peach);
	padding: 20px;
	border: dotted 5px var(--apricot);
	border-radius: 20px;
}

.footer {
  background-color: var(--peach);
  width: 50%;
  position: relative;
  bottom: 0;
  margin: auto;
  padding: 5px;
  border: solid 3px var(--salmon);
  border-radius: 10px;
}

.homefooter {
  background-color: var(--peach);
  height: 100px;
  position: fixed;
  bottom: 0;
}

.smallfooter{
  display:none;
}

.slidecontainer {
  display: flex;
  align-content: center;
  cursor: pointer;
  max-width: 900px;
  position: relative;
  /*margin: auto;*/
  background-color: var(--salmon);
  border: solid 5px var(--salmon);
  border-radius: 5px;
}

.gallerycontainer {
  width: 1200px;
  margin: auto;
  background-color: rgba(245, 199, 188, .7);
  border: solid 5px var(--salmon);
  border-radius: 8px;
}

.topgallerycontainer {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 1200px;
  background-color: rgba(245, 199, 188, .7);
  border: solid 5px var(--salmon);
  border-radius: 8px;
  position: relative;
}


/*.topgallerycontainer {
  display: grid;
  grid-template-columns: auto auto;
  max-width: 1200px;
  background-color: rgba(245, 199, 188, .7);
  border: solid 5px var(--salmon);
  border-radius: 8px;
  position: relative;
}*/

.galslide{
  cursor: pointer;
  max-width: 500px;
  max-height: 500px;
  margin: 10px;
  padding: 10px;
  background-color: var(--sherry);
  border: solid 3px var(--sherry);
  color: #dcd0ad;
  font: 20px oct;
  border-radius: 5px;
  align-content: center;
}

.galvid{
  max-width: 580px;
  max-height: 500px;
  margin: 5px;
  padding: 10px;
  background-color: var(--sherry);
  border: solid 3px var(--sherry);
  border-radius: 5px;
  object-fit: contain;
}

.youtube-video {
  width: 560px;
  height: 315px;
}

.illusslide {
  display: none;
  max-height: 650px;
  margin: auto;
}

.chslide {
  display: none;
  background-color: var(--sherry);
  border: solid 3px var(--sherry);
  transition: opacity .5s ease-out;
  border-radius: 5px;
}

.illgalslide {
  display: none;
  max-height: 500px;
  background-color: var(--sherry);
  border: solid 3px var(--sherry);
  transition: opacity .5s ease-out;
  border-radius: 5px;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.2s;
}

@keyframes fade {
  from {opacity: .8}
  to {opacity: 1}
}

/* The Modal (background) */
.modal {
  text-align: justify;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  margin: auto;
  display: block;
  /*padding: 20px;*/
  padding-top: 20px;
  height: auto;
  width: auto;
  max-height: 650px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 2;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.nav {
  background-color: var(--peach);
  position: relative;
  /*top: 30%;
  left: 5px;*/
  padding: 8px;
  width: 200px;
  margin: 5px auto;
  border: dotted 3px var(--apricot);
  border-radius: 5px;
}

.smallnav{
  display: none;
}

.imgdisclaim{
  display: none;
}

.imgdisclaimcontent{
  display: none;
}

.WIPdisclaim{
  display: /*flex*/ none;
  text-align: center;
  font: 16px octhead;
  color: var(--rust);
  width:200px;
  height:200px;
  position: fixed;
  top: 30%;
  right: 20px;
  background-color: var(--seafoam);
  border: dotted 4px var(--wallowblue);
  border-radius: 50%;
  padding: 8px;
  margin: 10px;
}

.WIPdisclaimcontent{
  max-width: 80%;
  max-height: 75%;
  margin: auto;
  position: relative;
}

/*@media only screen and (min-width: 641px) {
  
}

@media only screen and (max-width: 640px) {
  .side{
   max-width: 100px;
   position: fixed;
   left: 0;
   bottom: 0;
  }
  .footer {
  background-color: var(--salmon);
  font: 12px oct;
  max-width: 100%;
  position: fixed;
  bottom: 0;
  margin: auto;
  padding: 1px;
  }
  .chslide img{
    display:block;
    margin: 10px 0;
  }
}*/