html, body {
	
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.container {
	caret-color: transparent;
	user-select: none;
	position: relative;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	
	background-image: url('assets/image.png');
}

.refresh {
	
	z-index: 100;
	width: 100%;
	height: 40px;
	background-color: navy;
	opacity: 10%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	
}
.in {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translate(-50%, 0);
}
.info {
	font-size: calc(15px + 3.890625vw);
	color: #f9f9f9;
	text-shadow: 2px 2px 2px black;
	text-align: center;
}

#b {
  position: absolute;
  bottom: 100px;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}




.container video {
  z-index: 1;
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
