        #splash {
            position: fixed;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            font-size: 12px;
            font-family: sans-serif;
            color: #fdfcf1;
            text-transform: uppercase;
            background-color: #fdfcf1;
            transition: all 1s ease-out;
        }

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
        #splash .loading video {
            position: relative;
            top: 65%;
            left: 50%;
            transform: translate(-50%, -50%);
            height: auto;
        }

        #start-button {
            display: none;
            opacity: 0;
            transition: opacity 1s;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .introImage {
            max-width: 50%;
            height: auto;
        }

        .introvideo {
            max-width: 80%;
            height: auto;
        }




#splash .start-button img {
        width: 200px;
        height: auto;
}

#splash .credits {
  position: absolute;
  left: 2em;
  bottom: 2em;
  
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

#splash .credits .show-credits {
  opacity: 0;
  transition: opacity .5s ease;
}

#splash .credits ul {
  display: none;
  max-height: 200px;
  list-style: none;
  margin-top: 1em;
  line-height: 1.5;
  padding: 0;
  overflow-y: scroll;
  text-transform: capitalize;
}

#splash .credits a {
  color: #a2a2a2;
  text-decoration: none;
}

#splash .credits a:visited {
  color: #a2a2a2;
}

#splash .credits a:hover, #splash .credits a:visited:hover {
  color: #ccc;
}

#splash .introvideo {
	border-radius: 18px
	
}

#anchor-scene-button {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 266, 0.8);
  background-image: url('rotate-anchor.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  border-radius: 3px;
  z-index: 1;
}

#rotate-scene-button {
  display: none;
  position: fixed;
  top: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 266, 0.8);
  background-image: url('rotate-y.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  border-radius: 3px;
  z-index: 1;
}
