html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Orbitron', 'Times New Roman',sans-serif;
  background-color: rgb(0, 0, 70);
  display: flex;
  justify-content: center;
  align-items: center;    
}

#Welcome-Ui {
  background-color: rgb(160, 230, 230,0.75);
  height: 400px;  
  width: 1080px;
  font-size: 65px;
  text-align: center;
  border-radius: 30px;
  color: white;  
  border: 5px solid black;
  animation: glow 5s infinite alternate;
}

#Continue-Button-Text {
   color: White;
   font-size: 35px;
}


@keyframes glow {
  0% {
    box-shadow: 0 0 5px cyan;
  }
  100% {
    box-shadow: 0 0 20px cyan, 0 0 30px cyan;
  }
}


#Choice-Button-Container {
  display: flex;            
  gap: 100px;                
  justify-content: center; 
  align-items: center;      
  padding: 15px;
}

.Button {
  width: 70px;
  display: flex;
  justify-content: center; 
  align-items: center;      
  cursor: pointer;
  transition: 0.2;
}

#loadingVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;   /* cover the whole screen */
  z-index: 9999;       /* on top of everything */
  display: none;       /* hide until played */
}


