body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

.Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 150px;
    text-align: center;
    width: 100%;
    z-index:999;
    position: fixed;
    background-color: black;
}



.DS-Logo {
    max-width: 30%;
    height: auto;
    object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a, nav ul li button {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: black;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease 0s;
}

nav ul li a:hover, nav ul li button:hover {
    background-color: #e9ce00;
    color: rgb(22, 21, 21);
    transition: all 0.3s ease 0s;
}

main {
  padding: 150px
}

.Information {
    text-align: center;
    margin: 0 auto 20px;
    padding: 0 10px;
    max-width: 900px;
}

.Team {
    text-align: center;
    padding: 20px;
}

.team-member {
    display: inline-block;
    margin: 10px;
    text-align: center;
    width: 190px;
    height: auto;
    background: rgb(86, 86, 86);
    box-shadow: #ffffff66 0px 2px 4px, rgba(255, 255, 255, 0.3) 0px 7px 13px -3px, rgba(255, 255, 255, 0.2) 0px -3px 0px inset;
}

.PersonPicture {
    width: 100px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
    top: 10px;
    position: relative;
    border-style: solid;
    border-color: rgb(185, 185, 185);
}

.translate-button
{
    top: -12px;
    position: relative;
}

.TheMayhemPlaygroundHover
{
  display: inline-block;
  background-image: url('Images/TMP-Page/MapBG3.png');
  height: 167px;
  width: 208px;
  position: relative;
  top: -37px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 5px;
}

.TheMayhemPlaygroundLogo
{
  display: inline-block;
  height: auto;
  width: 200px;
  position: relative;
  top: 25px;
}

.EasterEgg
{
    width: 400;
    height: auto;
    position: relative;
}

* {box-sizing:border-box}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.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;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
    animation-name: fade3D;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    transform-origin: center;
    border-style: solid;
    border-color: rgb(185, 185, 185);
  }
  
  @keyframes fade3D {
    0% {
      opacity: 0.4;
      transform: perspective(800px) rotateX(-15deg) rotateY(15deg) scale(0.95);
    }
    50% {
      opacity: 0.7;
      transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    100% {
      opacity: 1;
      transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1.00);
    }
  }