body {
	background-color: darkblue;
}

body.home {
	color: yellow;
	font-size: 26px;
	/*position: sticky;
	background-image: url("snoopy3.jpg");*/
	
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: darkblue;
}

.center {
	width: 25%;
	display: inline-block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}

#rotate {
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}

.rotate2 {
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}

body.home a:hover {
	opacity: 0.6;
}

body.bio {
	color: white;
	font-size: 46px;
	vertical-align: text-bottom;
	font-size: 26px;
	
	height: 100%;
	background-color: darkblue;
}

body.bio img{
	display: block;
	max-width: 50%;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

body.pics2 {
	background-color: darkblue;
}

.alignment img {
	height: 50%;
	width: 50%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

body.pics3 {
	background-color: darkblue;
}

body.pics3 img {
	display: inline-block;
	text-align: center;
	width: 200px;
	height: 300px;
}

.sub {
	text-align: center;
}

.sub img {
	width: 200px;
	height: 50px;
	margin: 10px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* 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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  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 {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  -webkit-overflow-scrolling: touch;
  -webkit-scroll-snap-points-x: repeat(300px);
      -ms-scroll-snap-points-x: repeat(300px);
          scroll-snap-points-x: repeat(300px);
  -webkit-scroll-snap-type: mandatory;
      -ms-scroll-snap-type: mandatory;
          scroll-snap-type: mandatory;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.animate { transition: transform 0.3s ease-out; }
.ms-touch.slider {
  overflow-x: scroll;
  overflow-y: hidden;
  
  -ms-overflow-style: none;
  /* Hides the scrollbar. */
  
  -ms-scroll-chaining: none;
  /* Prevents Metro from swiping to the next tab or app. */
  
  -ms-scroll-snap-type: mandatory;
  /* Forces a snap scroll behavior on your images. */
  
  -ms-scroll-snap-points-x: snapInterval(0%, 100%);
  /* Defines the y and x intervals to snap to when scrolling. */
}

.container {
  display: flex;
  align-items: center;
  width: 100%;
  
  img {
    min-width: 100%; /* needed so Firefox doesn't make img shrink to fit */
    width: 100%; /* can't take this out either as it breaks Chrome */
  }
}

.container {
  /* same as before */
  overflow-y: hidden;
  height: 50vw;
  max-height: 100vh;
}

.container {
  --n: 1;
  width: 100%;
  width: calc(var(--n)*100%);
  
  img {
    min-width: 100%;
    width: 100%;
    width: calc(100%/var(--n));
  }
}

div.swipe {
 position: relative;
 overflow: hidden; margin: 0 auto; }

div.swipe-item {
 position: absolute; top: 0;
 width: 100%; height: 100%; overflow: hidden; }

input.swipe-radio { display: none; }

div.swipe-controller {
 position: absolute; left: 0; top: 0; z-index: 1;
 opacity: 0;
 width: 100%; }

input.swipe-radio:checked + div.swipe-item div.swipe-controller { opacity: 1; }

input.swipe-radio:first-of-type + div.swipe-item label.swipe-prev,
input.swipe-radio:last-of-type + div.swipe-item label.swipe-next { display: none; }

label.swipe-prev,
label.swipe-next { cursor: pointer; }

/* --- YOUR SETTINGS HERE --- */
/* Box Size */
div.swipe { width: 290px; height: 380px; }

/* Swipe Out (Position and Timing) */
input.swipe-radio:not(:checked) + div.swipe-item {
 -webkit-transform: translateX(-290px);
     -ms-transform: translateX(-290px);
         transform: translateX(-290px);
 -webkit-transition: -webkit-transform 0.4s ease;
         transition: transform 0.4s ease; }

/* Starting Position */
input.swipe-radio:checked ~ div.swipe-item {
 -webkit-transform: translateX(290px);
     -ms-transform: translateX(290px);
         transform: translateX(290px); }

/* Swipe In (Position and Timing) */
input.swipe-radio:checked + div.swipe-item {
 -webkit-transform: translateX(0);
     -ms-transform: translateX(0);
         transform: translateX(0);
 -webkit-transition: -webkit-transform 0.4s ease;
         transition: transform 0.4s ease; }

/* Arrows need to delay */
input.swipe-radio:checked + div.swipe-item div.swipe-controller {
 -webkit-transition: opacity 1s ease 0.4s;
         transition: opacity 1s ease 0.4s; }

/* Arrows */
label.swipe-prev,
label.swipe-next {
 position: relative; top: 158px;
 display: block;
 width: 64px; height: 64px; overflow: hidden;
 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAABACAYAAADS1n9/AAAD/UlEQVR4Ae1cTWsUQRA10YAievCmlwSPHsxVUAhiPPlX/cCDF0ElYEA8aUAviq4QFRQUIorf63tKkza7jtNDV3dNdRU8dnd2t7ve69fVM7OzszCdTvd5tKvAYrvUnTkVcAM07gM3gBugcQUap+8VwA3QuAKN0/cK4AZoXIHG6XsFaNwABwbyX8L3TgMrwFGAr2vEN3S6A0yALYCvS4QZ/gsDTgWfgMJrwJESSif08QGf3QBeJXxnyEdN8U81AMlfAhaGKFfgO/xh4wYgZQJz/FP2AVj2OPO1Dj5S+50bc5RYkkzyTzHAKoTVVvY56HuDOXL/JHeY5J9igOXcigq2tyLQtkn+KQbg3v5YQiJXiTal9Oyda4oBJNZVKQEkcpVoszr/FANIJevtVlTADVBRfA1dazXAV4hzW4NAmXIgF3JSFxoN8AYqXQWeqlNreELkQk7kpio0GWAKZR4A1wGe37cW5ERu5EiuKmLoj0G5k/+IBu8AUqdwc+c7tD0O/H1gGzgPHAaqhoYKMIEClwHrgx8PNLmS8yTeWON5zQrwHYTvAY9rEFfQ5xfkcBM4BZwBqoxFlU5B9h1wC3gPtB6cAK+BC8Cx0mLUWAIegeQ1wAd/d7SpBTWhNkWjZAX4DGa8YONFUYbj6ewHUt0EtoE14CAgHqUqwEsw4U6PD/7/h5QaUStqJh7SBvgJBjzs4VU6n8TZ2OmAWlEzakcNxUJyCeCJD+7ovRXL3n7DPGnESsAdxN4/8abIIlUBniCJK4APfspozP8sNaSW1DR7SBlgPzIlPPIoIKan1BJwEryPA3eB53k0aLYVankWOCShgJQBmCsTvgg8A2gEHgZ69FeAh4HnABpALCQNEJL2ahCU6P8oOuvjNEoYgP15NYhV//fzIrM+7r6UAUKfXg2CErOPxWZ93HVpA7BvrwbxCPw55Su+1v/d5e6rGgYIvYdqsIkN3FFsMarM+ljomgZgHqwG60BrRwrF13qKPS9qGyDk1FI1qD7rg+h81GIA5mK9GqiZ9RQ7hCYDhJziahC2jf1R1ayPxdRoAOYXqkGc65ifr2tNflFrYp5XGQVSDFDqBkw5mEvkKtFmDq7z2uida4oBxvRvHYlcJdqcN3g5tvXONcUAY7qeb5JDxT1tmOSfYoCHEIS3YtMezHFLIEmT/FMMwHVlA+D/27QGc2OOvdfABCIm+afeJ5B68V55vG5d2x3D/EaRA26UOcQANMESsAosA7xala9rBGcld3gmAMu+xMxHszNhhv9QA8wo4hvGqUDKPsA4GXrWnQq4ATrlsf+mG8D+GHcydAN0ymP/TTeA/THuZOgG6JTH/ptuAPtj3MnQDdApj/033QD2x7iT4S/fM7k3jt99PQAAAABJRU5ErkJggg==) no-repeat; background-size: 128px 64px;
 -webkit-tap-highlight-color: rgba(0,0,0,0); }

label.swipe-prev { float: left; background-position: left top; }

label.swipe-next { float: right; background-position: right top; }