*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 12px;
	--color-text: #fff;
	--color-bg: #919191;
	--color-bg-inner: rgba(0,0,0,0.8);
	--color-link: #8571ea;
	--color-link-hover: #8571ea;
}

@font-face {
    font-family: 'mona-sansextrabold_wide';
	font-display: swap;
    src: url('../fonts/mona-sans-extraboldwide-webfont.woff2') format('woff2'), url('fonts/mona-sans-extraboldwide-webfont.woff') format('woff');
	font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'mona-sanslight_wide';
	font-display: swap;
    src: url('../fonts/mona-sans-lightwide-webfont.woff2') format('woff2'), url('fonts/mona-sans-lightwide-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
	margin: 0;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: "mona-sanslight_wide", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	background-image: url(../img/bg.jpg);
  	background-size: cover;
    background-position: initial;
  	background-attachment: fixed;
}

.c8title {
  position: relative;
  font-family: 'mona-sansextrabold_wide';
  color: #fff;
  text-transform: uppercase;
  font-size: calc(1rem + 3vw);
  line-height: calc(1rem + 3vw);
  font-weight: 500;
  width: auto;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.c8title em {
  font-family: 'mona-sanslight_wide';
  font-style: normal;
  display: block;
}

h1 a, h1 a:hover, h1 a:visited {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 481px) {
  .c8title em {
    display: inline;
  }
}


p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	color: var(--color-text);
}

a, a:visited {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover, a:active {
	text-decoration: underline;
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.bold {font-weight:600;}

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;	
}
 
.middle {
    display: table-cell;
    vertical-align: middle;
	padding:0;
}
.inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 80vW;
	padding:40px 20px;
	width: 100%;
	background-color: var(--color-bg-inner);
	text-align:center;
}
img {
	width: 100%;
	max-width:340px;
    height: auto;
}
	
@media screen and (max-width:430px) {
	p {font-size:16px; line-height:22px;}
}