/* The navigation bar */
.navbar {
  overflow: hidden;
  background-color: rgb(17, 17, 17);
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%;
  z-index: 9;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 1.5vw;
  display: block;
  color: #FFBE24;
  text-align: center;
  padding: 1vw 1.5vw;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: rgb(0, 183, 255);
}

.LogoImage {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  padding-top: 100px;
  padding-bottom: 75px;
}

#horizontal {
  position: relative;
  display: flex;
  max-width: 5%;
  left: 10%;
  top: 10%;
}

#vertical {
  position: relative;
  display: flex;
  max-width: 5%;
  left: 10%;
  top: 10%;
}

#portal {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 700px;
  top: 500px;
}

#gate {
  position: absolute;
  width: 100px;
  height: 50px;
  left: 500px;
  top: 500px;
}

#portalButton {
  position: absolute;
  display: unset;
  width: 100px;
  height: 100px;
  left: 50px;
  top: 400px;
}

/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}
body {
  background-color: rgb(47, 48, 48);
  font-family: 'Concert One';
}
h1 {
  color: #FFBE24;
  position: relative;
  top: 50px;
  text-align: center;
  font-size: 10vw;
}
h2 {
  color: #FFBE24;
  position: relative;
  top: 20px;
  text-align: center;
  font-size: 3vw;
}
h3 {
  color: rgb(0, 183, 255);
  position: relative;
  text-align: center;
  font-size: 2vw;
}
p {
  color: rgb(0, 183, 255);
  position: relative;
  font-size: 2vw;
  text-align: center;
}

#downloadButton{
  border: none;
  display: flex;
  justify-content: center;
  font-family: 'Concert One';
  margin: 50px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 3vw;
  color: #FFBE24;
  background-color: #000;
  border-radius: 4px;
  width: 30vw;
  text-align: center;
  cursor: pointer;
}

.buttonRow {
  display: flex;
  justify-content: center;
}

#downloadButton:hover {
  background-color: #ddd;
  color: rgb(0, 183, 255);
}

video {
    display: block;
    margin: auto;
    width: 60%;
    height: auto;
}

.row {
  display: flex;
  justify-content: center;
}

/* Three columns side by side */
.column {
  float: center;
  width: 12.5%;
  padding: 8px 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}
/* Add some shadows to create a card effect */
.card {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
  padding: 0 16px;
}

/* Clear floats */
.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: #FFBE24;
  font-size: 1vw;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  font-family: 'Concert One';
  padding: 8px;
  color: #FFBE24;
  background-color: #000;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #ddd;
  color: rgb(0, 183, 255);
}

.icons {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.col-sm-4{
  padding-left: 20px;
  padding-right: 20px;
}

.nav-text {
  display:inline-block;
  vertical-align:middle;
  padding-left: 10px;
  padding-bottom: 30px;
  color: #FFBE24;
  font-size: 1.5vw;
}

* {box-sizing:border-box}

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

.slideshow-container div{
  text-align: center;
}

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

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

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

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