body {
	background: linear-gradient(128deg, #ff428f, #fd5fff, #ff1818, #ffce3e);
	font-family: Helvetica, Arial;
	max-height: 100% !important;
    overflow-y: hidden;
}
/* ScrollSnap */
.cfContainer {
    display: flex;
    overflow: auto;
    scroll-snap-type: x mandatory;
	display: flex;
	height: 100vh;
	min-height: 100vh;
	margin: 0;
	flex-direction: row;
    justify-content: flex-start;
	align-content: center;
	align-items: center;
	max-height: 100%;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.scrollItem {
	min-width: 100%;
	scroll-snap-align: start;
	z-index: 5;
	position: relative;
}
/* EOF ScrollSnap */
div.cf {
	padding: 50px;
	background: rgba(255, 255, 0, .3);
	color: white;
	font-weight: 100;
	font-size: 2.2em;
	display: block;
	box-shadow: 0px 0px 63px rgba(255, 255, 0, .7);
	text-align: center;
}
div.cf:active {
	background: rgb(255 0 165);
	transition: all 400ms ease;
}
div.cf span {
    position: absolute;
    top: 22px;
    font-size: .8em;
	background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, #33e152, #f3ee50);
    color: #33e152;
}

a {
	color: white;
	text-decoration: none;
}
/* cfFinger */
.cfFinger {
    background: url(/css/cfFinger.png);
    background-repeat: no-repeat;
	width: 64px;
    height: 64px;
    position: absolute;
    bottom: -70%;
    right: 10%;
	animation: moveHand ease-in-out 1s infinite alternate;
	transform: translateX(-50%);
	z-index: 5;
}
@keyframes moveHand {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-20px);
	}
}
.cfContent {
    font-size: 1.4em;
    margin: 30px -1px;
    color: white;
    font-weight: 100;
    transform: rotateZ(-3deg);
    border-radius: 16px;
    box-shadow: 0px 0px 57px rgba(255, 255, 0, .7);
    padding: 20px 20px;
}
/* EOF cfFinger */
@media (min-width: 768px) {
	.cfContent, div.cf {
		width: 70%;
		margin: 0 auto;
	}
}
@media (min-width: 1280px) {
	.cfContent, div.cf {
		width: 45%;
	}
}
