/* (c) 2024 Kyle Walz */
body {
    margin: 3px;
    font-family: arial;
    background-color: #eee;
    margin: 0%;
}
.foot {
    text-align: center;
    margin: 10% 0px 0px 0px;
    background-color: #333;
    color: #eee;
    text-shadow: 0 0 4px #203749;
    width: 100%;
    padding: 5%;
}
.h1 {
    background-color: #555555;
    color: #eee;
    padding: 1%;
    margin-top: 5px;
    font-family: monospace;
    font-weight: bold;
    font-size: x-large;
    width: 90%;
    border: 3px solid #2BD4D1;
    border-radius: 12px;
}
.h2 {
    background-color: #656565;
    color: #eee;
    padding: 1%;
    margin-top: 5px;
    font-family: monospace;
    font-weight: bold;
    width: 80%;
    border: 3px solid #D12BD4;
    border-radius: 12px;
}
.t {
    font-family: arial, helvetica;
    text-align: justify;
    margin: 1%;
    padding: 1%;
    width: 80%;
}

.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-image: url("http://walzeffects.com/images/navbg.jpg");
    background-position: center;
    background-color: #444;
    font-family: monospace;
}

.nav_item {
    float: left;
}

.nav_item .nav_link {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    margin-left: 10px;
    font-weight: bold;
    font-size: x-large;
}

/* Change the link color to #111 (black) on hover */
.nav_item .nav_link:hover {
    background-color: #111;
}

#nav-link {
    color: #eee;
    margin-left: 1%;
    margin-right: 1%;
    font-size: larger;
    padding: 6px;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    /*max-width: 1000px;*/
    /*width: 50%;*/
    position: relative;
    margin: auto;
    text-align: center;
    border: 3px solid #D4D12B;
    border-radius: 12px;
}

/* 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;
}
.prev {
    left: 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);
}

/* 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 {
  animation-name: fade;
  animation-duration: 1.5s;
}

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