@font-face {
  font-family: 'dolce_vita_heavybold';
  src:
    url('../fonts/dolce_vita_heavy_bold-webfont.woff2') format('woff2'),
    url('../fonts/dolce_vita_heavy_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dolce_vita_lightregular';
  src:
    url('../fonts/dolce_vita_light-webfont.woff2') format('woff2'),
    url('../fonts/dolce_vita_light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dolce_vitaregular';
  src:
    url('../fonts/dolce_vita-webfont.woff2') format('woff2'),
    url('../fonts/dolce_vita-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  background-image: url(../img/dreamlord_website_BG.jpg);
  background-repeat: repeat;
  background-size: cover;
  background-color: #0f0b0a;
  min-height: 200vh;
  margin: 0;
}
#header {
  width: 100vw;
  height: 123px;
  background-image: url(../img/dreamlord_banner_BG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
#header h1 {
  font-family: 'dolce_vita_heavybold', Arial, sans-serif;
  letter-spacing: 32px;
  position: relative;
  transition: all 0.75s ease-in-out;
  padding: 0;
  text-align: center;
  width: 100%;
  font-size: 22px;
  opacity: 1!important;
}
.scrolled #header h1 {
  padding-top: 46px;
  position: fixed;
  top: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
h1 {
  font-family: 'dolce_vita_heavybold', Arial, sans-serif;
  color: #fff;
  font-weight: normal;
  text-align: center;
  margin: 0;
  opacity: 0;
  transition: all 2s ease-in-out;
}
.scrolled h1 { opacity: 1;}
.dv-regular {
  font-family: 'dolce_vitaregular', Arial, sans-serif;
}
.dv-light {
  font-family: 'dolce_vita_lightregular', Arial, sans-serif;
}
.dv-heavy {
  font-family: 'dolce_vita_heavybold', Arial, sans-serif;
}
img {
  width: 100%;
  height: auto;
  margin: auto;
  padding-top: 30vh;
  display: block;
  max-width: 200px;
  margin-bottom: 35px;
   opacity: 0.2;transition: all 0.75s ease-in-out;
}
.scrolled img {
  opacity: 1;
}
@media only screen and (max-width: 900px) {
  #header h1 {
    letter-spacing: 2.5vw;
  }
}
