* {
	box-sizing: border-box;
}

body {
	background-color: transparent;
	color: #F0F0F0;
  margin: 0;
  padding: 0;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg .overlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background: #441100;
	opacity: 0.5;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gameport {
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    padding: 0 15px;
}

#lineinput-field {
	background-color: transparent;
	color: #F0F0F0;
	font-family: inherit;
	font-weight: 700;
	width: 90% !important;
}

#lineinput-prefix {
	background-color: transparent;
	color: inherit;
	font-weight: 700;
	margin-right: 8px; /* FIXME */
}

#output {
	font-family: 'IM Fell DW Pica', serif;
	font-size: 24px;
	line-height: 38px;
	max-width: 751px;
}

.prompt-prefix {
	font-weight: 700;
	margin-right: 8px; /* FIXME */
}

.prompt-input {
	color: #FFFFFF;
	font-weight: 700;
}


.vorple-commandlink, .vorple-weblink {
	color: #EEBB88;
	text-decoration: none;
	-webkit-transition: 250ms linear 0s;
	-moz-transition: 250ms linear 0s;
	-o-transition: 250ms linear 0s;
	transition: 250ms linear 0s;
	outline: 0 none;
}

.vorple-commandlink:hover {
	text-shadow: -1px 1px 6px #FFFFFF, 1px -1px 6px #FFFFFF;
	text-decoration: none;
	color: #FFFFFF;
}

.vorple-commandlink:visited {
	color: inherit;
}

/* Text styles */

.dark-gray-letters {
	color: #202530;
}

.large-font {
	color: #EEBB88;
	font-size: 1.2em;
	font-variant: small-caps;
}

.light-gray-background {
	background-color: #CCCCCC;
}

.light-gray-letters {
	color: #808080;
}

.yellow-background {
	background-color: rgba(255,255,255,.12);
}

/* Responsive */

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 767px) {
    .fullscreen-bg__video {
        display: none;
    }
}
