/* Full page image background */
.home-header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),
    url("https://s3.us-west-2.amazonaws.com/museum-of-the-rockies/Exhibitions/Siebel-Dinosur-Complex/_large/MOR_Siebel_Dinosaur_Hall©2020_06.JPG");
  background-position: center;
  background-size: cover;
  position: relative;
}
.home-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
}

/* Push button for homepage leading to species page */
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 16px;
  color: #fff;
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
  transition: 0.5s;
}
.hero-btn:hover {
  border: 1px solid #f44336;
  background: #f44336;
  color: white;
}