img {
  width: 100%;
}
body{
  margin: 0;
}
html{
  font-family: Arial, Helvetica, sans-serif;
}
#background {
  min-height: 1px;
}
#foreground {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 25%;
  margin-bottom: 25%;
  z-index: 1;
}
#contaienr {
  position: fixed;
  z-index: -1;
  width: 100%;
}
.section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#overlay {
  position: absolute;
  width: 100%;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
}
h1 {
  text-align: center;
  font-size: 6rem;
  font-family: sans-serif;
  color: white;
}
h3 {
  text-align: center;
  font-size: 2rem;
  font-family: sans-serif;
  color: white;
}
h4 {
  text-align: center;
  font-size: 2rem;
  font-family: sans-serif;
}
h5 {
  text-align: center;
  font-size: 1rem;
  font-family: sans-serif;
}
.video-container {
  position: absolute;
  height: auto;
  object-fit: fill;
  min-height: 100%;
  background-color: #000;
  width: -webkit-fill-available;
}
video {
  height: 100vh;
  min-width: 100%;
  opacity: 0.7;
}
.content {
  padding: 50px 10px;
  background-color: #fffe;
  display: flex;
  justify-content: center;
  border-radius: 25px;
}
#future-content {
  padding: 50px 10px;
  background-color: #fffe;
  justify-content: center;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  border-radius: 25px;
}
#future-content table{
  width: 100%;
}
.member {
  display: block;
  float: left;
  position: relative;
  margin: auto;
}
.member img {
    display: block;
    margin: auto;
    width: 150px;
    height: 150px;
    border-radius: 25px;
    background-color: #000;
    transition: 0.5s ease-in-out;
  }
.member img:hover {
    opacity: 0.7;
    scale: 1.05%;
    transition: 0.5s ease-in-out;
  }
.member p {
    text-align: center;
  }
.game {
  display: block;
  float: left;
  position: relative;
  margin: auto;
}
.game img {
    display: block;
    margin: auto;
    height: 150px;
    width: 150px;
  }
.game h3 {
    color: black;
    text-align: center;
  }
.game button {
    display: block;
    margin: auto;
  }
@media only screen and (width: 1500px) {
  #foreground {
    height: 1000px;
    z-index: 1;
  }
}
@media only screen and (orientation: portrait) {
  .video-container {
    position: absolute;
    height: 100vh;
    width: auto;
    object-fit: fill;
    min-height: 100%;
    background-color: #000;
  }
  video {
    height: 100%;
    width: auto;
    opacity: 0.7;
  }
}
