@keyframes anim {
	0% {
		opacity: 0;
		transform: scale(1.4);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

body{
  background-image: url('ultra-kill-ultrakill.gif');
  background-size: cover;
}

.center {
  width: 50%;
  margin: 0;
  position: absolute;
  top: 12.5%;
  left: 25%;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  background-color: rgb(0, 0, 0,0.5);
  color: white;
  padding: 10px;
  border-radius: 5px;
  animation: anim 2s ease 0s 1 normal forwards;
}

.background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  margin-top: -1px;
}

.title {
  text-align: center
}

a {
  color: white;
  font-weight: bold;
}
