#overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  background-clip: padding-box;
  z-index: +101;
  cursor: pointer;
  text-align: center;
  padding-bottom: calc(3000px - 20vw);
}

#overlay #text{
  position: fixed;
  top: 0%;
  left: 50%;
  transform: translate(-50%,-0%);
  -ms-transform: translate(-50%,-0%);
  background-color: rgba(255,255,255,0.95);
  color: rgba(0,0,0,1.0);
  width: 80%;
  max-width: 800px;
  padding: 40px 5%;
  margin-top: 100px;
  border-radius: 20px;
}
#overlay #text h1 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-transform: uppercase;
	line-height: 42px;
	margin-top: 0;
	color: rgba(37,35,76,1.00);
}
#overlay #text h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 28px;
	color: rgba(122,44,126,1.00);
}
#overlay #text p {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 24px;
}
#overlay #text a {
	color: rgba(122,44,126,1.00);
}
#overlay #text a:hover {
	text-decoration: none;
}
