body{
	/*font-family: 'Varela Round', sans-serif;*/
	background: #f7f7f7;
	font-family: 'Nunito', sans-serif;
	color: #000;
	font-weight: 600;
}

#container{
	width:800px;
	margin:50px auto;
	padding: 20px;
	width:50%;
}
#container h2{
	text-align:center;
	color:#045;
}

#quoteContainer{
	width:75%;
	background: #fff;
	padding:10px;
	margin:30px auto;
	text-align: center;
  height:140px;
}
#quoteContainer p{
	font-size: 30px;
}
#quoteContainer p#quoteGenius{
	font-size: 12px;
}
#buttonContainer{
	width: 100%;
	text-align: center;
}
#quoteButton{
/*	width:200px;
	margin-top: 10px;
	border:2px solid #46b8da;
	color:#045;
	font-family: inherit;
	font-weight: bold;
	padding:5px;
	text-decoration: none;
	text-align: center;*/
}
#quoteButton {
    width: 200px;
	padding: 10px;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	text-align: center;
    border-radius: 100px;
    background: linear-gradient(-45deg,#ffcf42,#FD6A3C,#f0327b,#771fdd,#7F1BFF,#981BFF,#e41bff);
    background-size: 400% 400%;
    -webkit-animation: bgTransi 20s ease infinite;
    animation: bgTransi 20s ease infinite;
    margin: 0 var(--gutter) var(--gutter);
    position: relative;
    cursor: pointer;
}
/*#quoteButton:hover{
	cursor:pointer;
	background:#09c;
	color: #fff;	
}*/
#quoteButton:active{
	cursor: pointer;
}
#quoteButton{
	display: inline-block;
}
#quoteGenius{
	font-style: italic;
	font-weight: 700;
	text-align: center;
}


/*MEDIA QUERIES*/
@media screen and(max-width:760px){
	#quoteButton,#addNew{
		display: block;
	}
}