html {
  font-family: 'Lilita One';
}

body {
  margin: 0;
  font-size: 22px;
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
  background-color: #282929;
}

* {
  box-sizing: border-box;
}


#landscapeVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-height: 100%;
  min-width: 100%;
  z-index: 0;
}


#portraitVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}

#galleryDiv {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  background-color: black;
  /* Set the background color of the container */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#galleryDiv iframe {
  width: 100%; 
  height: 100%;
  /*height: calc(100% - 80px);
  margin-top: 80px;*/
  border: 0; 
}

#galleryDiv button {
  position: absolute;
  top: 5px; 
  right: 140px ;
  opacity: 80%;
  font-family: 'Lilita One';
  width: 120px;
  height: 32px;
  font-size: 18px;
  padding: 5px;
  border: 1px solid #ccc !important;
  border-color: #faef53 !important;
  background: #3b3b3b;
  color: #faef53;
  cursor: pointer;
  border-radius: 8px;
}

#containerDiv {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  background-color: black;
  /* Set the background color of the container */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
}


#containerImage {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deep-img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.neoncontainer {
  position: fixed;
  top: 0;
  padding-top: 10px;
  padding-left: 100px;
  z-index: 6;
}

.header {
  position: fixed;
  top: 0;
  padding-top: 10px;
  padding-left: 20px;
  color: #faef53;
  width: 100%;
  opacity: 0.8;
  z-index: 6;
}

#header-text {
  text-shadow:
    0 0 4px #b575bb,
    0 0 11px #a621b3,
    0 0 19px #a812b6;
}

.footer {
  position: fixed;
  bottom: 0;

  color: #faef53;
  width: 100%;
  padding: 20px;
  opacity: 0.5;
  z-index: 20;
}

.w3-button {
  font-family: 'Lilita One';
  width: 160px;
  font-size: 18px;
  padding: 10px;
  border: 1px solid #ccc !important;
  border-color: #faef53 !important;
  background: #3b3b3b;
  color: #faef53;
  cursor: pointer;
  border-radius: 8px;
}

.w3-button:hover {
  color: #faef53 !important;
  background-color: #777676 !important
}