.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;  
    opacity: 0.50;
    transition: all 0.2s ease-out;
}


h1,h2,h3,h4 {
    font-weight: 700;
}

.super-heading {
    font-size: 48px; 
    color: #484848;
    font-weight: 525; 
}


.super-paragraph {
    font-size: 24px; font-weight: 300; color: #484848;
}

.small-paragraph {
    font-size: 16px; font-weight: 300; color: #999999;

}


button {
    font-size: 16px;
    color: #525252;
    font-family: inherit;
    font-weight: 300;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    /* text-transform: uppercase; */
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
  }
  
  button:focus,
  button:hover {
    color: #4078e0;
  }
  
  button:focus:after,
  button:hover:after {
    width: 100%;
    left: 0%;
  }
  
  button:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #4078e0;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
  }
