body {
    background-color: rgb(33, 37, 41);
    color: white;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: gray;
  border-width: 1px;
  border-style: solid;
}

.text {
  padding-left: 20px;
}

h1, h2 {
  text-align: center;
}

h3 {
  text-align: center;
  font-weight: 300;
  font-style: italic;
}

#img-icon {
  width: 144px;
  height: 144px;
  text-align: center;
}

#dl-icon {
  width: 64px;
  height: 64px;
}

figure {
  text-align: center;
}

figure figcaption {
  font-weight: 300;
}

a {
  color: #99B4D1
}

* {box-sizing: border-box;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: auto;
}

/* Caption text */
.captionText {
  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 {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade-in-out;
  animation-duration: 5.0s;
}

.fade-in {
    animation-name: fade;
    animation-duration: 1.0s;
  }

@keyframes fade {
  from {opacity: .0} 
  to {opacity: 1}
}

@keyframes fade-in-out {
    from {opacity: .0}
    25% {opacity: 1} 
    75% {opacity: 1}
    to {opacity: .0}
  }

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

table { 
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgb(51, 58, 65);
    border-collapse: collapse;
    text-align: center;
    table-layout: auto;
}

td:nth-child(even) {
    background-color: rgb(23, 26, 29);
}

th {
    background-color: rgb(44, 60, 75);
}

td {
    border-bottom: 1px solid rgb(121, 120, 120);
    padding-top: 10px;
    padding-bottom: 10px;
}

ul {
    display: inline-block;
    text-align: left;
  }
