/*
COLORS

gold from flyer
#faa61b
rgb(250, 166, 27)


brown
#1a1f1a

purple
#230f27

https://coolors.co/app/faa61b-230f27-1a1f1a-a50104-590004
scheme based on above

reds
#A50104
#590004

green
#452103

maroon
#210F04

light
#c9c9c9

*/
body {
    color: #fff;
    font-family: 'Muli', sans-serif;
    line-height: 1.5;
    background: #000;
    margin: 0;
}
#bgpattern {
    background: transparent url(img/pw_maze_black_trans.png) repeat;
    position: fixed;
    z-index: 1;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    opacity: 0;
}
#bggrad {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    opacity: 0;
}

#floralpattern1 {
    position: fixed;
    bottom:0;
    left:-35%;
    width: 80%;
    height: auto;
    z-index: 10;
    opacity:0;
}
#floralpattern2 {
    position: fixed;
    top:0;
    right: 5%;
    width: 50%;
    height: auto;
    z-index: 15;
    transform: rotate(180deg);
    opacity:0;
}
.floralsvg path {
    stroke: rgb(250, 166, 27); /*aka #FAA61B */
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}
.floralsvg path.shapepath {
    stroke: rgba(250, 166, 27,0);
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
}
.no-magic #floralpattern1,
.no-magic #floralpattern2,
.no-magic #bggrad {
    opacity: 1;
}
.no-magic #bgpattern {
    opacity: .5;
}
a {
	color: #fff;
}
a:hover {
	color: #afa6d9;
}

/*TEMP*/
main {
	text-align: center;
	display: flex;
	flex-flow: column;
	justify-content: center;
	min-height: 100vh;
	font-size: 150%;
	background: #A50104;
}

/* CONTENT*/
main>section {
    position: relative;
    z-index: 100;
/*    min-height: 100vh;*/
    padding: 0 5vw;
/*    overflow: hidden;*/
}
/*sections after 1st auto height for mobile */
/*
.no-magic main>section+section {
    min-height: 500px;
    padding: 0 35px;
}
*/

h1 {
	font-size: 3em;
	letter-spacing: .1em;
}



/*UTILITY CLASSES*/
.clear {
    clear: both;
}
.center,
.align-center {
    text-align: center;
}
.large {
    font-size: 1.2em;
}
.normal {
    font-size: 1em;
}
.small {
    font-size: .8em;
}