* {box-sizing:border-box}

html {
  box-sizing: border-box;
  font-size: 62.5%; 
  scroll-behavior: smooth; 
}

body {
  font-family: Arial, Helvetica, sans-serif, helvetica, sans-serif;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #333;
  font-weight: 300;
  line-height: 1.6; 
  /* background: #4e5c69; */
  background: black;
}

/* Slideshow container */
.slideshow-container {
  padding: 0px;
  position: relative;
  /* margin: auto; */
  position: fixed;
  top: 50%; /*moves slidehsow to centre of screen */
  left: 50%;
  transform: translate(-50%, -50%); /*futreproof this code, say you want to change a pic */
  /* object-fit: cover; */
  /* display: block; */
}

.imgcontain {
	width: 1400px;
	height: 950px;
	/* object-fit: cover; */
	display: block;
	background-color: black;
	padding: 40px 60px 40px 60px; 
}

.imgcontain img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.header {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: +1;
  color: gold;
  font-family: verdana light;
}

/* 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;
}

.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}
}
/*
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller *//*
  }
}

/* smaller screen adaption  */

@media screen and (max-width: 600px) {
	.header{
	display: none;
	}
}

@media only screen and (max-width: 700px){
	.modal-content {
		height: 100%;
	}
}