* {box-sizing: border-box;}
body {
  background-color: #2a2a2a;
}
h1 {
  font-family: Verdana, sans-serif;
  text-align: center;
  color: #dedede;
}
img {
  max-width: 100%;
  height: auto;
}
.mySlides {display: none;}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}
.linkbox {
  position: relative;
  margin: auto;
  width: 50%;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
