body, html {
    height: 100%;
}

/* The hero image */
.hero-image {
  
  background-image: url("images/deehero.jpg");

  /* Set a specific height */
  height: 100%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
	color:#BED1CF; 
  text-align: center;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
 
}
.btn {
  background-color: #000;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px 0 #006699;
  width: 150px;
  animation: example 3s infinite;
}

@keyframes example {
  0% {background-color: #008CBA;}
  50% {background-color: #006699;}
  100% {background-color: #008CBA;}
}