

:root{
  --deep-green: #214521;
  --deep-purple: #452136;
  --dull-green: #354635;
  --dull-purple: #46353f;
  --pale-green: #d8ffad;
  --pale-purple: #b4a7d6;
}
html, body {
  background-color: var(--dull-green);
  font-size: 16px;
  font-family: Verdana, sans-serif;
  text-align: center;
}
body{
  background-image: url(Images/Site/Background.png); 
  background-size: 100% auto;
}
p {
  margin: auto;
  padding: 1vmin;
  background-color: var(--pale-green);
  font-size: 16px;
}


h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

article{
  margin: 8px;
}

button{
  scale: 5min;
}

checkbox {
  scale: 6vmin;
}

iframe{
  border:none;
  width: 100%;
  display: block;
  margin: 3vmin;
}

.nav ul {
  list-style-type: none;
}

.nav li{
  display: inline;
  margin: auto;
  padding: 2%;
  white-space: nowrap;
  font-size: 20vmin;
}

.nav img{
  width: 1em;
  height: 1em;
}

.embedded-item{
  background-image: none;
}

.embedded-item p {
  font-size: 16px;
}


img {
  max-width: 100%;
  max-height: 30em;
  margin: auto;
}

.img-bordered {
  display: block;
  margin: auto;
  border: 7px solid var(--deep-green);
   border-radius: 12px;
  max-width: 90%;
}

.doll-style .img-bordered {
  border-color: var(--deep-purple);
}

.img-hires {
  max-width: 500px;
}

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

.flex-container{
  display: flex;
  justify-content: center;
}

.flex-item{
  border: 7px solid var(--deep-green);
  border-radius: 12px;
  background-color: var(--dull-green);
  margin: 2%;
  flex: 50%;
}

.date{
  color: gray;
  visibility: hidden;
}

.doll-style{
  border: 7px solid var(--deep-purple);
  border-radius: 12px;
  margin: 3%;
  padding: 2%;
  background-color: var(--pale-purple);
}

.doll-style p{
  background-color: var(--pale-purple);
}

.doll-style a{
  color: var(--deep-purple)
}

#doll-section{
  border-color: var(--deep-purple);
  background-color: var(--dull-purple);
}
.code-style{
  border: 7px solid var(--deep-green);
  border-radius: 12px;
  margin: 2vmin;
  padding: 2%;
  background-color: var(--pale-green);
  
}

.code-style p{
  background-color: var(--pale-green);
}

.code-style hr{
  background-color: var(--deep-green);
  color: var(--deep-green);
  border-width: 0;
  height: 1vmin;
}

.code-style a{
  color: var(--deep-green)
}

.code-snippet {
  background-color: LightGray;
  margin: 3%;
}

/*SLIDESHOW STUFF*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.slide {
  display: none;
  text-align: center;
}

.img-slide{
  height: 40vw;
  margin-left: auto;
  margin-right: 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: 4vmin;
  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;
}
.prev {
  left: 0;
}

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

/* Caption text */
.slide-text {
  font-size: 4vmin;
  color: white;
  background-color: gray;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.number-text {
  font-size: 4vmin;
  color: white;
  padding: 8px 12px;
  position: absolute;
  top: 0;

}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

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