.press-start-2p-regular {
	font-family: "Press Start 2P", system-ui;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
}

.protest-strike-regular {
	font-family: "Protest Strike", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
}

body {
	font-family: "Protest Strike", sans-serif;
	font-size: 18px;
	background: black;
	margin: 0;
	padding: 0;
}

a:link,
a:visited {
	color: orange;
}

a:hover {
	color: rgb(183, 119, 0)
}

.descbox {
	width: 40vw;
	height: auto;
	background: rgba(0, 0, 0, .6);
	color: white;
	border-radius: 25px;
	position: relative;
	top: 3vh;
	left: 50%;
	transform: translateX(-15%);
	padding: 25px;
}

.mainbox {
	width: 100vw;
	min-height: 100vh;
	background: url(images/bg.jpg);
	background-size: cover;
	background-position-x: right;
	position: fixed;
}

@media screen and (max-width: 800px) {

	.descbox {
		width: 80vw;
		left: 50%;
		top: 20vh;
		transform: translateX(-50%);
	}

	.mainbox {
		background-position-x: 33%;
		height: auto;
	}

}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
  }
  .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }