* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Bebas Neue';
	animation: fadein 3s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#cross-view{
	background-color: #000;
}

#preach-view{
	background-color: #fff;
}

.container {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 95%;
	margin: 0 auto;
}

.box {
	text-align: center;
}

#box-1 {
	height: 80vh;
}

#box-2 {
	height: 20vh;
}

#cross {
	color: #fff;
	cursor: default;
	font-size: 80vh;
	line-height: 80vh;
	animation: illuminate 1.5s infinite alternate;
}

@keyframes illuminate {
    to {
        text-shadow: 0px 0px 100px #fff;
    }
}

#testify {
	color: #fff;
	font-family: 'Bebas Neue';
	font-size: 10vh;
	line-height: 10vh;
	text-shadow: none;
	transition: 1.5s;
}

#testify:hover {
	text-shadow: 0px 0px 50px #fff;
}

.return{
	color: #777;
	display: block;
	font-size: 24px;
	margin: 32px 0 64px;
	opacity: 1;
	transition: 0.5s;
}

.return:hover {
	opacity: 0.7;
}

a{
	text-decoration: none;
}

p{
	font-size: 80px;
	margin-top: 32px;
}

