@import url(/fonter/lib/Garramond/stylesheet.css);
@import url(/fonter/lib/League-Gothic/stylesheet.css);
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotateY(0deg);
    -webkit-transform: rotateX(0deg);
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotateY(40deg);
    -webkit-transform: rotateX(100deg);
    -webkit-transform: rotate(40deg);
  }
}
@keyframes spinner {
  from {
    -webkit-transform: rotate3d(1, 1, 1, -20deg);
    -moz-transform: rotate3d(1, 1, 1, -20deg);
    transform: rotate3d(1, 1, 1, -20deg);
  }
  to {
    -webkit-transform: rotate3d(1, 1, 1, 20deg);
    -moz-transform: rotate3d(1, 1, 1, 20deg);
    transform: rotate3d(1, 1, 1, 20deg);
  }
}

html {
  background: #000;
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  margin: calc(100vh - 270px) 0 0;
  padding: 12px;
  box-sizing: border-box;
  background:
  height: 100%;
}
header {
	text-align: center;
	padding: 24px 24px 0;	
}
header img {
	max-height:200px;
}
.background {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
video{
	min-width: 100%;
	min-height: 100%;
}
img {
	object-fit: cover;
}
a {
  color: #732626;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.center {
  text-align: center;
}
main {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  text-shadow: 4 4 4px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  -webkit-transform-style: inherit;
}
main header span {
  display: inline-block;
}
main .images {
  transform-style: inherit;
  padding: 0 12px;
}
main section figure {
  box-sizing: border-box;
  max-width: 100%;
  transform-style: inherit;
  margin: 6px 0;
  position: relative;
  padding: 4px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

main section img {
  box-sizing: border-box;
  max-width: 100%;
}

.figure figcaption {
	font: italic 14px/1.3 Garramond, georgia, serif;
	font-variant-ligatures: no-discretionary-ligatures;
	margin: 2px 5px;
	transform-style: inherit;
 }

@media (min-width: 600px) {
  main section .figure {
	  width: 50%;
	  float: left;
	  margin-right: 12px;
  }
  
  main section .figure:nth-of-type(odd) {
	  float: right;
	  margin-right: 0;
	  margin-left: 12px;
  }
}
section {
  display: block;
  margin: 12px 0;
  padding: 12px;
  transform-style: inherit;
  position: relative;
}
section article {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  transform-style: inherit;
  position: relative;
}
section h1 {
  position: absolute;
  top: -15px;
  left: -15px;
  margin: 0 0 12px;
  font: bold 100px/1.1 LeagueGothic, sans-serif;
  color: rgba(102, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateZ(0);
}
section h2 {
  margin: 0 0 12px;
  font: bold 36px/1.1 LeagueGothic, sans-serif;
  color: rgba(102, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateZ(0);
}
section p {
  max-width: 800px;
  margin: 12px 0 ;
  font: 18px/1.5 Garramond, georgia, serif;
  transform: translateZ(0);
  font-variant-ligatures: no-discretionary-ligatures;
}
hr {
    border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, .7), rgba(0, 0, 0, .1));	clear: both;
	margin: 12px 0;
	
}
section nav {
  display: block;
  margin: 20px 0 0 0;
}
section nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
section nav ul li {
  font: 14px/1.5, Garramond serif;
  padding: 0px;
  margin: 0 4px;
  display: inline-block;
}
section nav ul li a {
  text-decoration: none;
}
section nav ul li a:hover {
  text-decoration: underline;
}
section.intro {
  margin: -12px 0 12px;
  padding: 0 12px 12px;
}
