<style>
body, html {
    height: 100%;
	margin: 0;
}

.hero-image {
  background-image: url("");
  height: 10%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 65px;
  color: white;
  background-color: green;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: lightgreen;
  color: black;
}

.hero-text recom {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 45px;
  color: white;
  background-color: green;
  text-align: center;
  cursor: pointer;
}

.hero-text recom:hover {
  background-color: lightgreen;
  color: black;
}

</style>