body {
	background-color: black;
}

.question {
	background-image: url(question\ copy.png);
}

.question1 {
	background-image: url(bg\ copy.svg);
}

.bg {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	width: 100%;
	padding-bottom: 70vh;
	margin-top: 10vh;
	animation: show 5s 1;
	transition-delay: 5s;
	z-index: -1;
}

.bg-start {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	width: 100%;
	padding-bottom: 70vh;
	margin-top: 10vh;
	animation: hide 8s 1;
	opacity: 0;
}

@keyframes show {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes hide {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}