body, html { height: 100%; }

.bg {     
   background-image: url("bg.jpg");    
   height: 100%; 
   background-position: center;
   background-repeat: no-repeat;  
   background-size: cover;
}

.op {
   opacity: .7;
}


ol {
	list-style-position: inside;
}	

body {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	display: grid;
	grid-template-rows: 1fr auto;
	grid-template-areas: 
		"main" 
		"footer";
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

body.landing {
}

img {
	display: block;
}



/* TYPO */

@font-face {
    font-family: eurostile;
    src: url('fonts/EurostileLTStd-Demi.otf');
}

@font-face {
    font-family: arial-monospace;
    src: url('fonts/arial-monospaced-mt.ttf');
}

@font-face {
    font-family: arial-nova;
    src: url('fonts/ArialNova.ttf');
}

.eurostile {
	font-family: eurostile, sans-serif;
	text-transform: uppercase;
}

.eurostile.fortyone {
	font-size: 41px;
	line-height: 43px;
	letter-spacing: 0.037em;
}

.eurostile {
	-webkit-text-stroke: 1px;
}

@media all and (hover: none) and (max-width: 760px) {
	.eurostile {
		-webkit-text-stroke: 2px;
	}
}

.monospace {
	font-family: arial-monospace, monospace;
}

.monospace.thirteen {
	font-size: 13px;
	line-height: 18px;
}

.monospace.fifteen {
	font-size: 15px;
	line-height: 21px;
}

.monospace.twentytwo {
	font-size: 22px;
	line-height: 28px;
}

.arial {
	font-family: arial-nova, arial, sans-serif;
}

.arial.eleven {
	font-size: 11px;
	line-height: 11px;
	letter-spacing: 0.022em;
}

.arial.thirteen {
	font-size: 13px;
	line-height: 21px;
	letter-spacing: 0.022em;
}

.arial.fifteen {
	font-size: 15px;
	line-height: 21px;
	letter-spacing: 0.012em;
}

.arial.eighteen {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 0.022em;
}

.arial.twentytwo {
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 0.016em;
}

.upper {
	text-transform: uppercase;
	letter-spacing: 0.022em;
}

.arial .upper {
	letter-spacing: 0.02em;
}

/* URLS */
a:link, a:visited {
	color: inherit;
	text-decoration: none;
}

.dbo {

  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;

  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;

}