body {
    font-family: 'Solitreo', cursive;
    font-weight: 900;
    color: #fff;
    background: #000;
  }
  
  h1, h2, p, strong {
    margin: 5px 0;
    padding: 0;
    margin-right: 80px;
    line-height: 1em;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 
      -1px -1px 1px rgba(#000, .3),
       1px 1px 1px rgba(#000, .3), 
       0 0 10px #000;
  }
  
  h1 {
    font-size: 5.5em;
    letter-spacing: -10px;
    margin-bottom: -10px;
  }
  
  h1 strong {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 235px;
    opacity: .5;
    margin: 0;
  }
  
  h2 {
    opacity: .6;
    font-size: 1.5em;
  }
  
  p {
    font-size: 1em;
  }
  

 
  .link {
    text-decoration: none;
    text-shadow: 0 0 5px #000;
    font-size: 18px;
    color: #fff;
    animation: pulse 4s infinite;
  }

  .container {
    position: absolute;
    bottom: 3em;
    right: .1em;
  }
  
  .button {
    position: absolute;
    left: 3em;
    bottom: 3em;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 0 5px #000;
    font-size: 13px;
    color: #fff;
    animation: pulse 4s infinite;

    }
  }

  .vegas-overlay {
    opacity: .2;
  }
  
  .vegas-timer-progress {
    background: #fff;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(.8);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(.8);
    }
  }

      /* Hide on Desktop */
      .hide-desktop { 
        /* non-gmail */
        display: none; 

        /* gmail */
        font-size: 0; 
        max-height: 0; 
        line-height: 0; 

        /* outlook */
        mso-hide: all;

        /* optional, required only if you're using padding */
        padding: 0; 
    }

    @media (max-width: 900px) {           
        .hide-desktop {
            display: block !important;
            font-size: 12px !important;
            max-height: none !important;
            line-height: 1.5 !important;
        }
    }

/* Mobile */
@media (max-width: 900px) {
    .hide-mobile {     
        display: none;
        max-height: 0;
    }
    .mobile-social {     
        position: absolute;
        bottom: .5em;
        right: -1em;
    }
}