@charset "utf-8";
/* CSS Document */

.text {
	position: absolute;
	top: 170%;
	right: 50%;
	transform: translate(50%, -50%);
	color: #fff;
	max-width: 90%;
	padding: 2em, 3em;
	font-family: Source Code Pro;
	text-align: center;
}

h3 {
	font-size: 4em;
	font-weight: 10;
	letter-spacing: 1px;
	text-align: center;
}

h3, p {
    opacity: 0; 
    position: relative;
    bottom: -40px;
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    bottom: 0;
}

a,
a:visited {
	text-decoration: none;
	color: #FFFFFF;
	transition: 1s;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #000000;
}