/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
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;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	
display: block;}

body {	
line-height: 1.5;
}

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;
}	

/* END RESET */

span {
    font-weight: bold;
}

#wrapper {
    background-color: #151515;
    color: white;
    font-family: Quicksand;
    letter-spacing: 1px;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dark-box {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.7);
    position: fixed;
    opacity: 0;
    transition: opacity .5s linear;
}

#dark {
    position: fixed;
}

.fade { 
  animation: fadein 2s;

}
@keyframes fadein {
  from {
    opacity:1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity:1;
  }
}

#shrink {
    transition: font-size 3s linear;
}

#moon {
    transition: cy 2s, fill 5s;
}

svg {
    padding: 25px;
}

#amber {
    display: inline-block;
    position: relative;
}

.gradient {
    fill: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

#opal {
    display: inline-block;
    position: relative;
}

#crescent {
    display: inline-block;
    position: relative;
}

#crescent-moon {
    transition: cx 3s linear;    
}

#spread {
    display: inline-block;
    position: relative;
    transition: letter-spacing 2s;
}