body {
	padding-top: 20px;
    font-family: 'Nunito', sans-serif;
}

.home-content {
	padding: 40px 15px 0 15px;
	text-align: center;
}

.riche {
	text-align: center;
	box-shadow: 0 0 20px #888888;
	padding: 20px;
	margin: 20px;
    border-radius: 20px;
}

.riche h1 {
	margin: 0;
}

h2 {
	text-align: center;
	text-transform: italic;
}

#faq h2 {
    text-align: left;
}

@keyframes riche-box-fade {
    from { background-color: #ffffff; }
    to { background-color: #f0f2f5; }
}

.riche-box {
    animation-name: riche-box-fade;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}


