body {
  background-image: url(images/background.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color:#000;
}

h1 {
  background: url(images/drdoozy.svg) no-repeat center center;
  height: 100px;
}

h1 span {display: none;}

h2 {font-size: 2.5rem; color: #fff; text-transform: uppercase;}
h2 span {color: #d9bf16;}

a {background: #d9bf16; display: inline-block; padding: 0px; color: #000;}
a:hover {color: #fff;}

/* For mobile devices */
@media only screen and (max-width: 600px) {
  body {
    background-image: url(images/background-mobile.jpg);
  }
  h1 {
    background: url(images/drdoozy-mobile.svg) no-repeat center center;
    height: 300px;
  }
  h2 {font-size: 2.3rem;}
}