/* -- reset --*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* -- end reset --*/

* {
    box-sizing: border-box;
}

html, body {
    text-align: center;
    color: #444;
    height:100vh;
    background-color: #000;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

a {
    font-weight:bold;
    color:#aaa;
    text-decoration: none;
}

a:hover {
    font-weight:bold;
    color:#ccc;
}

header {
    top: 0px;
    left: 0px;
    width: 100%;
    max-width: 1000px;
    background-color: #000;
    padding: 10px 10px 20px 10px;
    text-align: center;
    margin: 0 auto;
    border-bottom: 2px solid #825819;
}

header.frontPage {
    border-bottom:none;
}

video{
    width:100%;
   max-height:500px;
}


div.content {
    color: #999;
}

div.pageContent{
    min-height:100vh;
    padding-left:10px;
    padding-right:10px;
}

div.footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 40px;
    font-size:10px;
    text-transform: uppercase;
    color:#999;
    margin-bottom:0px;
}

h1 {
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    letter-spacing: 20px;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 9px;
    text-shadow: 0 0 10px #3a2109;
}


h2 {
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: #cc8924;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.indexTitle {
    opacity: 0.8;
}

h2.pageSubtitle{
      font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size:2rem;
 color:#aaa;
 text-transform: uppercase;
 letter-spacing: 6px;
 margin-top:20px;
}


h3, label{
  font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size:1.5rem;
 text-transform: uppercase;
 letter-spacing: 4px;
  color:#666;
}


.buttonContainer{
    padding:10px;
text-align: center;
}

.sectionPicker{
    display: flex;
    max-width: 500px;
    margin:20px auto 60px;
      border-top:1px solid #3a2109;
}

.sectionPicker li{
    padding-top:10px;
    flex:1;
    position: relative;
}

.sectionPicker li a:hover {
    text-decoration: none;
    color: #fff;
}

ul#galleryPicker {
    display: flex;
    max-width: 600px;
    margin: 20px auto 30px;
    text-transform: uppercase;
}

ul#galleryPicker li{
    flex: 1;
    text-align: center;
    font-family: "League Gothic", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 4px;
}

ul#galleryPicker li a{
    color:#666;
}

ul#galleryPicker li a.active{
    color:#ccc;
}

.topHeader a{
    text-decoration: none;
}



a.button,
button,
input[type="button"],
input[type="submit"] {
	display:inline-block;
    border: none;
    font-size: 16px;
     font-family: "League Gothic", sans-serif;
    padding: 5px 7px;
    text-transform: uppercase;
    background: #000000;
    border: 2px solid #5e3811;
    color: #caa670;
    text-decoration: none;
    letter-spacing:2px;
}

a.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background: #999999;
    color:#fff;
    text-decoration: none;
}

h2#galleryTitle,
h2#postTitle,
h2#contactTitle,
h2#archiveTitle {
    margin-top: 30px;
    font-size: 25pt;
    margin-bottom: 25px;
    letter-spacing: 3px;
} 

/* ----------------- */
/*   contact form    */
/* ----------------- */



#contactForm {
    margin: 20px auto;
    max-width:900px;
}

#contactForm .columnContainer{
    display: flex;
    border: 2px solid #5e3811;
    padding: 10px 20px;
   
}

#contactForm .column{
    flex:1;
    padding:10px;
}

#contactForm label {
    color: #999;
    text-align: left;
    display: block;
    padding-bottom: 10px;
}

#contactForm input[type='text'], 
#contactForm input[type='email'], 
#contactForm textarea {
      width:100%;
    display:block;
    margin-bottom:10px;
    padding:10px;
}

#contactForm textarea {
    height:225px;
}

#contactForm .buttonContainer {
    text-align:right;
}

/* ----------------- */
/*   mail results    */
/* ----------------- */

.mailResult {
    border: 2px solid #5e3811;
    padding: 35px;
    margin: 40px auto;
    max-width:900px;
}

.mailResult h2 {
    margin-bottom: 28px;
}

.mailResult p {
    margin: 20px 0px;
}

.mailResult .buttonContainer{
    text-align:center;
}

/* ----------------- */
/*     blog stuff    */
/* ----------------- */

#blogContent {
max-width: 500px;
width:100%;
margin:0 auto;
}

.blogblock {
    display:block;
    padding: 15px;
    position: relative;
    color:#ccc;
    text-align: left;
    border-bottom:1px solid #666;
}

.blogblock div {
    padding:5px;
    margin:5px;
}

.post .postdate,
.blogblock .postdate {
    font-style: italic;
    font-size:12px;
    text-align: left;
    display:block;
}



/* ----------------- */
/*     view post     */
/* ----------------- */

h2#postTitle{
    text-align: left;
    margin-bottom:10px;
}

.post {
max-width: 900px;
width:100%;
margin:0 auto;
color:#999;
padding:20px;
line-height: 24px;
}

/* ----------------- */
/*      gallery      */
/* ----------------- */

.desc{
    margin-bottom:80px;
}

#galleryContainer{
    width:100%;
    max-width: 1200px;
    padding:0px 20px;
    margin: 0 auto;
    padding-bottom:100px;
}


.desc h4{
    color:#ccc;
    margin-top:10px;
    text-transform: uppercase;
}

.desc span{
    color:#ccc;
    display:block;
    margin-top:10px;
    text-transform: uppercase;
    font-size:12px;
}

.imgContainer img{
    max-height:800px;
    max-width:100%;
}

/* ----------------- */
/*      gaming      */
/* ----------------- */

.gamingItemContainer{
    border: 1px solid #666;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    color:#ccc;
   
}

.gamingItemContainer h3{
    color:#ccc;
    margin-bottom:10px;
}

.gamingItemContainer p{
    margin-bottom:10px;
     text-align: left;
     line-height: 20px;
}

.chapelImgContainer {
    display:flex;
    width:100%;
    justify-content: center;
}
.chapelImgContainer img{
    flex:1;
    width:48%;
    margin:1%;
}

.gamingItemContainer a{
    color:#cc8924
}


@media screen and (min-height: 800px) {
 video{
    width:100%;
   max-height:650px;
}
}

@media screen and (max-width: 430px) {
    h1{
   font-size:2.1rem;
}
    h2{
   font-size:1.3rem;
}
}

@media screen and (max-width: 600px) {
#contactForm .columnContainer{
    flex-direction: column;
}
}
