body, html {
  margin: 0;
  padding: 0;
  font-family: 'Libre Baskerville', serif;
  overflow-x: hidden;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero h1 {
  position: relative;
  color: black;
  font-size: 2em;
  text-transform: uppercase;
  font-style: italic;
  opacity: 1;
  z-index: 3;
}
.hero-link {
  position: absolute;
  bottom: 42%; /* adjust how close it sits under the title */
  text-align: center;
  width: 100%;
  opacity: 1;
  z-index: 4;
}

.hero-link a {
  color: black;
   -webkit-text-stroke: 1px white; 
  text-decoration: none;
  font-style: italic;
  font-size: 1.2em;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: white;
  background-position: center;
  background-image: url('not found img/blkhole.gif');
  opacity: 1;
  z-index: 1;
}
