html, body {
	background-image: url("image_header.svg");
  background-size: 700px;
  background-color: #E9E4E9;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-family: ff-tisa-sans-web-pro, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 11pt;
  line-height: 1.9;
}

#SectionArt {
  display: none;
}

/*--- Type ---*/

h1 {
	font-family: questa-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
	font-size: 3vw;
}

h2 {
  font-family: questa-sans, sans-serif;
  font-weight: 600;
  font-style: italic;
	font-size: 1.5vw;
}

h3 {
  font-family: questa-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
	font-size: 2.5 vw;
	margin-top: 5%;
	padding-bottom: 10px;
}

h4 {
  display: inline;
  font-family: ff-tisa-sans-web-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11pt;
  text-align: justify;
  line-height: 1.9;
  background-color: #E9E4E9;
}

h6 {
  font-family: ff-tisa-sans-web-pro, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 7pt;
  text-align: justify;
  line-height: 1.9;
}

 p {
  font-family: ff-tisa-sans-web-pro, sans-serif;
  font-weight: 200;
  font-style: normal;
	font-size: 11pt;
	text-align: justify;
	line-height: 1.9;
}

a {
  font-family: questa-sans, sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 11pt;
	color:  #8c738c;
  font-weight: 600;
	text-decoration: none;
}

a:hover {
  color: black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline;
}

.mySlides li {
  display: block;
}

i {
  font-size: 6vw;
  margin: 0;
  padding: 1vw;
}

i:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*--- Nav ---*/

.nav {
  background: white;
  height: 55px;
  width: 100%;
  position: fixed;
  z-index: 10;
  border: 1px solid #000;
}

.nav ul {
  padding:0;
  padding-right: 1%;
  margin:0;
  list-style:none;
  border:0;
  float:right;
}

.nav li {
  float:left;
  margin:0;
  padding:0;
  border:0;
}

.nav li a{
  float:right;
  margin:0;
  padding:13px 10px;
  text-decoration:none;
}
  .nav h1 {
    font-size: 1vw;
  }

@media screen and (max-width: 768px) {
  .nav a {
    font-size: 10pt;
  }
}

/*--- Main ---*/

.section {
	background-color: white;
	width: 100%;
	margin-top: 13%; /*Space between sections*/
	position: relative;
  border: 1px solid #000;
}

.section_body {
	margin: auto;
	width: 60%;
}

.textbox{
}

.section_title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}

.section_title_img {
    flex: 1;
    max-width: 50%;
}

.section_title_img img {
    max-width: 100%;
    float: right;
}

.section_title_content {
    flex: 1; 
    max-width: 50%;
    text-align: left;
    margin: 0;
    padding: 0;
    padding-left: 2vw;
}

.section_title_content h1 {
    margin: 0;
    padding: 0;
}

.section_title_content h2 {
    margin: 0;
    padding: 0;
}

#SectionMain {
  scroll-margin-top: 100px;
}

/* Adjustments for smaller screens (e.g., mobile) */
@media screen and (max-width: 768px) {
    .section_title {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center; /* Center-align all content */
    }

    .section_title_img, .section_title_content {
        max-width: 100%; /* Allow both the image and text to take up the full width on smaller screens */
    }

    h1 {
        font-size: 7vw;
    }

    h2 {
        font-size: 5vw;
    }
}

.contentWrap { /*for video player*/
  padding-bottom:56.25%;
  position:relative;
  display:block;
  width: 100%;
}

#SectionGames {
  padding-bottom: 4vw;
  scroll-margin-top: 50px;
}

#SectionGames img{
  width: 100%;
}

.spacer {
	height: 30px;
}

#SectionContact {
  scroll-margin-top: 5vw;
}

#SectionContact p {
  padding-top: 25px;
  text-align: center;
}

#SectionContact a {
  color: black;
}


/* ! Slideshow ! */

/* Slideshow container */

.slideshow-container {
  width: 100%;
  max-width:700px;
  margin: auto;
  position: relative;
}

.mySlides {
  display: none;
  width: 100%;
  }

/* Next & previous buttons */
.prev{
  top: 200px;
  cursor: pointer;
  position: absolute;
  width: auto;
  left: -125px;
  padding: 16px;
  margin-top: -22px;
  font-size: 15px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: transparent;
  color: black;
}

.next{
  top: 200px;
  cursor: pointer;
  position: absolute;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  font-size: 15px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: transparent;
  color: black;
  right: -125px;
  border-radius: 3px 0 0 3px;
}

@media screen and (max-width: 768px) {
  .prev{
    top: 110px;
    cursor: pointer;
    position: absolute;
    width: auto;
    left: -50px;
    padding: 16px;
    margin-top: -22px;
    font-size: 15px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: transparent;
    color: black;
  }

  .next{
    top: 110px;
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    font-size: 15px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: transparent;
    color: black;
    right: -50px;
    border-radius: 3px 0 0 3px;
  }
}

.prev:hover, .next:hover { /* On hover, add a black background color with a little bit see-through 
  background-color: rgba(200,200,200,0.8);*/
}

/* 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}
}
