@font-face {
  font-family: Sail;
  src: url(./assets/Sail-Regular.ttf);
}

#Yuri {
	display: flex;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background: black;
	align-items: center;
	justify-content: center;
}

#wtext {
	position: fixed;
	top:10vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
#Choose {
	display: flex;
	position: absolute;
	height: 50vh;
	width: 300px;
	background: url("assets/Choose.gif") center center no-repeat;
	opacity: 0;
	animation: Fadein 1s forwards;
	animation-delay: 12s;
}

h1 {
	color: white;
	font-family: Sail;
	font-size: 50px;
	opacity: 0;
	animation: Fadein 5s forwards;
	animation-delay: 10s;
}

@keyframes Fadein {
  0%   {opacity: 0;}
  100% {opacity: 1;}
}