* {
	box-sizing: border-box;
}

body {
	margin: 0;
}

.App {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	font-family: 'Space Mono', monospace;
}

.OnShip, .Classified {
	width: 100vw;
	height: 100vh;
}

.OnShip iframe {
	width: 100vw;
	margin-top: 70px;
	height: calc(100vh - 70px);
	filter: grayscale(0.9)
}

.OnShip .info {
	position: absolute;
	top: 0;
	background-color: black;
	color: white;
	font-size: 20px;
	padding: 20px;
	width: 100vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Classified {
	background-color: black;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 40px;
}

.Classified img {
	margin-bottom: 20px;
}

.Classified span {
	max-width: 400px;
	text-align: center;
}