/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

a {
  text-decoration: none;
}

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;
}

html {
  font-size: 62.5%;
  font-smoothing: antialiased;
  font-smooth: always;
}

body {
  font-family: "new-spirit", serif;
  font-weight: 400;
  color: #3d3f4c;
}
body ::selection {
  background-color: #3d3f4c;
  color: white;
}
body.menu-open {
  overflow: hidden;
}
body strong {
  font-weight: 600;
}

#body-bg {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url("../images/dwel-campers.jpg");
  background-size: cover;
  background-position: left bottom;
}
@media only screen and (max-width: 720px) {
  #body-bg {
    height: calc(100vh - 300px);
  }
}

#coming-soon {
  width: 100vw;
  height: 100vh;
  position: relative;
}
#coming-soon h1 {
  position: absolute;
  top: 25vh;
  left: 50%;
  width: 400px;
  height: 150px;
  max-width: 40vw;
  background-image: url("../images/dwel-orange.svg");
  background-position: center top;
  background-repeat: no-repeat;
  text-indent: -999999px;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 720px) {
  #coming-soon h1 {
    top: 15vh;
    max-width: 60vw;
  }
}
#coming-soon #main-message {
  position: absolute;
  top: 25vh;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, calc(-50% + 150px));
  font-size: 3.4rem;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  #coming-soon #main-message {
    top: 15vh;
    transform: translate(-50%, calc(-50% + 80px));
    font-size: 3rem;
  }
}
#coming-soon #contact-details {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #3d3f4c;
  color: white;
  padding: 4rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 720px) {
  #coming-soon #contact-details {
    width: 100vw;
    min-height: 300px;
    padding: 2rem 4rem;
    text-align: center;
  }
}
#coming-soon #contact-details p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 2.4rem;
}
#coming-soon #contact-details p a {
  color: #d6870b;
}
