.hero {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}

.hero-text {
  position: inline;
  top: 50%;
  transform: translateY(-50%);
  font-size: 70px;
}

.text, .title-text {
  display: inline-block;
  margin: 0;
  line-height: 1;
  font-size: 1.35em;
  color: #ffffff;
}

/* Font for Hero Text */
.russo-one-regular {
  font-family: "Russo One", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  color: #ffffff;
}

.title {
  display: grid;
  justify-content: left; /* Left Justify */
  align-items: left;     /* Left Justify */
  font-size: 40px;
  margin: 10px 0px 10px 15px
}


/*
 * Semi-Transparent Fade (Ghost Button)
 */
.ghost-button-semi-transparent {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  vertical-align: middle;
  position: inline;
  top: 20%;
  display: inline-block;
  width: 150px;
  padding: 8px;
  color: #fff;
  border: 2px solid;
  text-align: center;
  outline: none;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  transition: background-color 0.2s ease-out,
              border-color 0.2s ease-out;
}
.ghost-button-semi-transparent:hover,
.ghost-button-semi-transparent:active {
  background-color: #fff; /* fallback */
  background-color: rgba(255, 255, 255, 0.4);
  border-color: #fff; /* fallback */
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
  transition: background-color 0.3s ease-in,
              border-color 0.3s ease-in;
}