body {
  background-image: url("assets/bg_jpg.jpg");
  background-color: #1b282e;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
}

p {
	text-align: left;
	color: #F0FFFF;
	font-size: 24px;
}

img {
  border-radius: 16px;
}

td {
  min-width: max-content;
  text-align: center;
}

tr {
  width: 75%;
  min-width: 75%;
}

h1 {
  text-align: center;
	color: #b0ffff;
  font-size: 48px;
  font-variant: small-caps;
}

h2 {
  text-align: left;
	color: #d3ffff;
  font-size: 32px;
  font-variant: small-caps;
}

li {
  list-style-type: square;
  size: 32px;
  color:  #d3ffff;
}

a {
  color: #d3ffff;
  font-size: 24px;
}
a:link {
  color: #d3ffff;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #b0ffff;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #b0ffff;
  text-decoration: none;
}

/* selected link */
a:active {
  color:  #b0ffff;
  text-decoration: none;
}

.myButton {
	background-color:#1a6ca4;
	opacity: 0.75;
	border-radius:16px;
	border:1px solid #02579a;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #283466;
}

.socialButton {
  background-color:#1a6ca4;
	opacity: 0.75;
  border-radius:16px;
  border:1px solid #02579a;
  display:inline-block;
  color:#ffffff;
	font-family:Arial;
  font-size:17px;  
  padding:16px 16px;
  
  text-decoration:none;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.socialButton > a {
  opacity: 1;
}

.socialButton:hover {
  opacity: 1;
}

.myButton:hover {
	background-color:#4395ba;
	opacity: 1;
}
.myButton:active {
	position:relative;
	top:1px;
}

* {box-sizing:border-box}

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

.socialTable {
  margin-left: auto;
  margin-right: auto;
  width: 25%;
}

.featureTable {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.myDiv {
    display: block;
    text-align: left;
    max-width: 75%;
    background-color:#1e1e1e;
    border-radius:16px;
    font-size:17px;
    padding:1px 32px;
	  opacity: 0.75;
    margin: auto;
    position: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
  border-radius:16px;
}

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

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

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