/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: "Roboto", sans-serif;
	color: #f2ede6;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	background: #1a1c15;
	display: block;
	width: 100vw;
	height: 100vh;
	main {
		position: relative;
		width: 100vw;
		height: 100vh;
	}

	.centeredLogo {
		width: 80%;
		max-width: 960px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		line-height: 1.4rem;
		.signup {
			width: 100%;
			margin: 0 auto;
			display: block;
			.inline-container {
				margin: 0 auto !important;
			}
		}
		ul {
			max-width: 320px;
			margin: 20px auto;
			display: grid;
			gap: 20px;
			grid-template-columns: 1fr 1fr;
			font-weight: normal;
			li {
				text-align: center;
				span.image {
					width: 36px;
					height: 36px;
					display: flex;
					align-items: center;
					justify-content: center;
					margin: 0 auto 8px auto;
				}
				img {
					max-width: 30px;
					max-height: 36px;
					
				}
				transition: all ease 0.3s;
				&:hover, &:focus {
					transform: scale(110%);
				}
			}
			a {
				display: block;
				align-text: center;
				span.text {
					display: block;
					font-size: 14px;
					text-transform: uppercase;
				}
				text-decoration: none;
				
				
			}
			
		}
	}

}

.questival-pattern {
	position: fixed;
	z-index: 1;
	pointer-events: none;
	opacity: 1;

	background-image: url('/assets/images/repeating-pattern-cream.svg');
	background-repeat: repeat;
}

/* =========================
   MOBILE
   Horizontal strips
========================= */

.pattern-top,
.pattern-bottom {
	left: 0;
	width: 100%;
	height: 48px;
	background-size: auto 48px;
}

/* TOP = scroll LEFT */
.pattern-top {
	top: 0;
	animation: scroll-left 30s linear infinite;
}

/* BOTTOM = scroll RIGHT */
.pattern-bottom {
	bottom: 0;
	animation: scroll-right 30s linear infinite;
}

/* =========================
   DESKTOP / TABLET
   Vertical side rails
========================= */


/* =========================
   ANIMATIONS
========================= */

/* TOP MOBILE */
@keyframes scroll-left {
	from {
		background-position-x: 0;
	}

	to {
		background-position-x: -600px;
	}
}

/* BOTTOM MOBILE */
@keyframes scroll-right {
	from {
		background-position-x: 0;
	}

	to {
		background-position-x: 600px;
	}
}

/* LEFT DESKTOP */
@keyframes scroll-up {
	from {
		background-position-y: 0;
	}

	to {
		background-position-y: -600px;
	}
}

/* RIGHT DESKTOP */
@keyframes scroll-down {
	from {
		background-position-y: 0;
	}

	to {
		background-position-y: 600px;
	}
}