html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 20px;
  height: 100%;
  bottom: 0px;
}

.socials {
  position: absolute;
  top:0;
  right:0;
  padding: 4px;
}

.socialsicon {
  width: 32px;
  height: 32px;
  padding: 10px;
}

.textbox {
  position: absolute;
  background: linear-gradient(to bottom, #1166dd, #002255);
  border: 3px solid #bbbbbb;
  color: white;
  padding: 20px;
  border-radius: 15px;
  font-family: Reactor, Arial, sans-serif;
  font-size: 3vh;
  text-shadow: 1px 1px 2px black;
  line-height: 1.5;
  overflow-x: auto;
}

.menu {
  right: 20px;
  top: 20px;
  font-size: 6vh;
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
}

.item {
  right: 190px;
  left: 20px;
  top: 20px;
  padding: 15px;
  font-size: 4.5vh;
  text-align: left;
}

.arrow {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 4vh;
  cursor: pointer;
  animation: blink 1s infinite alternate;
}

.menuarrow {
  font-size: 5vh;
  left: 0px;
  opacity: 0;
}

.clickable-div {
  cursor: pointer;
}

@keyframes blink {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@font-face {
  font-family: Reactor;
  src: url("/Fonts/Reactor7.otf") format("opentype");
}

@media (max-aspect-ratio: 1/1) { /* When height > width */
  .container {
    flex-direction: column;
  }

  .clickable-div {
    flex-direction: row;
    display: inline-block;
  }

  .menu {
    flex-direction: row;
    height: 40px;
    left: 10px;
    right: 10px;
    font-size: 3vw;
    top: 10px;
    padding: 5px;
    overflow: hidden;
  }

  .item {
    left: 10px;
    right: 10px;
    top: 90px;
    bottom: 50px;
    padding: 15px;
    font-size: 2vw;
    text-align: left;
  }

  .textbox {
    font-size: 5vw;
  }

  .socialscontainer {
    flex-direction: row;
    display: inline-block;
    padding: 0px;
    padding-left: 10px;
    margin: 5px;
    margin-top: 0px;
  }

  .socialsicon {
    width: 18px;
    height: 18px;
    padding: 0px;
    padding-top: 8px;
  }

  .menuarrow {
    font-size: 4vw;
  }
}
