@font-face {
  font-family: OldLondon;
  src: url(/fonts/OldLondon.ttf);
}

* {
	box-sizing: border-box;
	margin: 0;
}

body {
	background-color: rgb(208,94,21);
	font-family: Arial, sans-serif;
}

#container {
  height: auto;
  width: 100%;
  min-width: 360px;
  max-width: 500px;
  padding: 0 10px;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#container a {
	color: #eee;
}

#container a:visited {
	color: #eee;
}

#container img {
  width: 80%;
}

#header {
  color: #eee;
  margin-top: 20px;
}

h1 {
  font-family: OldLondon, serif;
  font-size: 45pt;
  font-weight: 100;
  letter-spacing: 3pt;
}

h5 {
  font-size: 12pt;
  font-weight: 100;
  letter-spacing: 2pt;
  margin-top: 20px;
  text-transform: uppercase;
}

#content {
  font-size: 15pt;
  font-weight: 100;
  letter-spacing: 2pt;
  margin-top: 20px;
  text-transform: uppercase;
}

#content > div {margin-top: 30px;}
#content a {text-decoration: none;}

.underline {
  border-bottom: 1px solid #eee;
}

.email-icon {
  margin-bottom: -6px;
}

#ig {display: inline-block; margin-top: 20px;}
#ig img {
  height: 20px;
  width: auto;
}

#policies {margin-top: 40px; }
#policies a {text-decoration: none;}

ul {padding: 0;}
li {display: inline-block; margin-left: 10px;}
li:first-child {margin-left: 0;}

#spacer {
  height: 80px;
}

#notice {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #5c1400;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  width: 100%;
}

#notice p {
  padding: 0 20px;
  text-align: center;
}

#notice_close {
  border: none;
  background: none;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  margin: 5px;
}

@media (max-width: 480px) {
  h1 {font-size: 30pt; }
  h5 {font-size: 10pt; }

  #content {
    font-size: 10pt;
  }

  #spacer {
    height: 100px;
  }
}

