#welcome{
  z-index: 2000;
}

#welcome .hero-content {
  position: absolute;
  top: 200px;
  left: 50%;
  /*transform: translate(-50%, -50%);*/
  text-align: center;
  max-width: 90vw;
  padding: 2rem;
  background: rgba(0,0,30,0.5);    /* soft dark tint */
  border-radius: 1rem;
  z-index: 2000;
}

#welcome .hero-content h1 {
  cursor: pointer;
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
}

#welcome .hero-content p {
  cursor: pointer;
  font-size: 1.25rem;
  color: #eee;
  margin-bottom: 1.5rem;
}

#welcome .hero-ctas > a {
  display: inline-block;
  margin: 0 0.5rem 1rem 0;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.8);
  color: #222;
  text-decoration: none;
  font-weight: bold;
  transition: transform .2s;
  z-index: 2000;
}

#welcome .hero-ctas > a:hover {
  transform: scale(1.05);
  background: #F06B19;
}

.hero-content {
  opacity: 0;
  transform: translate(-50%, -45%) scale(0.95);
  animation: heroIn 1s ease-out forwards 0.5s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 1050px) {

    #welcome .hero-content {
    position: absolute;
    top: 250px;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
    text-align: center;
    width: 85vw;
    max-width: 100vw;
    padding: 1rem;
    background: rgba(0,0,30,0.5);    /* soft dark tint */
    border-radius: 1rem;
  }

    #welcome .hero-content h1 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 0.5rem;
  }

}