/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  color: white;
  height: 100%;
  width: 100%;
  font-family: "Gill Sans", sans-serif;
  font-size: 15px;
  background-color: #060f2a;
  color: #060f2a;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1px;
}

h2, h4 {
  margin: 8px 0;
  color: #6e799c;
}

p {
  color: #454e6b;
}

img, audio, canvas, svg, video {
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
	text-decoration: underline;
}

.hidden {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

/* Masthead Style */
.masthead-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.masthead {
  position: relative;
  /* user-select: none; */
  transition: opacity 400ms linear, top 400ms ease-out;
}

.masthead::-moz-selection {
  background: #060f2a;
}
.masthead::selection {
  background: #060f2a;
}

.masthead-logo {
	font-size: 10pt;
    display: block;
    width: 300px;
    height: 60px;
    margin: 10px auto;
    background: url('../img/logo.svg') no-repeat center;
    background-size: contain;
	/*cursor: pointer;*/
    
    /* Hide text but keep it accessible */
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.masthead-logo::before {
    content: 'Lingon Valley';  /* Text content */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.masthead-guide {
  font-size: 1.5rem;
  position: relative;
  left: -2px;
}

.mastbody {
  position: relative;
  cursor: default;
  transition: opacity 400ms linear, top 400ms ease-out;
}

.mastmail {
  margin: 8px 0;
  color: #6e799c;
}

/* Page Footer */
.page-footer {
  padding: 8px 0;
  background-color: #060f2a;
  color: #999;
  transition: opacity 400ms linear 500ms;
}

.page-footer a {
  color: #999;
  padding: 10px 0;
}

.page-footer a:hover,
.no-touch .page-footer a:hover {
  color: #3d73ba;
}

.contact-detail a {
  display: inline-block;
}
.contact-detail a::before {
  content: '\b7';
  padding: 0 16px;
}
.contact-detail a:first-child::before {
  content: '';
  padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	
  .masthead-logo {
    max-width: 200px;
	margin: 0px auto;
  }
  
  .mastbody a {
	font-size: 0.7rem;
  }
  
  .mastbody p {
	font-size: 0.7rem;
  }

  .masthead-guide {
    font-size: 1.2rem;
  }
}
