@charset "UTF-8";
/* CSS Document */

  .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('http://raykolbe.com/butterflies/images/banner.png');
    background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
	position: relative;
  }
 

  .hero-image > p {
    color: white;
    padding: 10px;
  } 

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
  .button {
  background-color: white;
  color: black;
  border: 2px solid #4CAF50; /* Green */
  border-radius: 8px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
}

.button:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}