.project-link{
	color: white;
	font-size: 1.2em;
	margin-top: 200px;
}

section a{
	text-align: right;
	text-decoration: none;
}

.project-link{
	color: var(--navColor);
	transition: all 0.2s ease-in-out;
  	-webkit-transition: all 0.2s ease-in-out;
  	-moz-transition: all 0.2s ease-in-out;
}

.project-link:hover{
	color: var(--hoverColor);
}

.content-quote{
	color: var(--lightYellow);
	height: auto;
	margin-top: 80px;
	width: 100%;
}

.theQuote{
    margin-left: 20%;
}

.quote-section{
	padding-bottom: 50px;
}
.quote-header{
	font-size: 5em;
	font-weight: bold;
}
#quote{
	margin-top: -15px;
	font-size: 3.5em;
	line-height: 1.2;
	font-weight: lighter;
	font-style: italic;
}

#author{
	font-size: 3.5em;
	text-align: right;
	font-weight: bold;
}

.content-quote-mobile{
	color: var(--lightYellow);
	height: auto;
  margin-top: 20px;
}

.quote-section-mobile{
	padding-bottom: 25px;
    width: 80%;
    margin: 0 auto;
}

#quote-mobile{
	font-size: 3.5em;
	line-height: 1.2;
	font-weight: lighter;
	font-style: italic;
}

#author-mobile{
	font-size: 3.5em;
	text-align: right;
	font-weight: bold;
}

.mainPageLink{
    margin-right: 20%;
}
/* ANIMATION */
#quote{
	-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

#author{
	-webkit-animation: fadeinAuth 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeinAuth 3s; /* Firefox < 16 */
        -ms-animation: fadeinAuth 3s; /* Internet Explorer */
         -o-animation: fadeinAuth 3s; /* Opera < 12.1 */
            animation: fadeinAuth 3s;
}

#quote-mobile{
	-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

#author-mobile{
	-webkit-animation: fadeinAuth 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeinAuth 3s; /* Firefox < 16 */
        -ms-animation: fadeinAuth 3s; /* Internet Explorer */
         -o-animation: fadeinAuth 3s; /* Opera < 12.1 */
            animation: fadeinAuth 3s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeinAuth {
    0% { opacity:0; }
    40% { opacity:0; }
    100% { opacity:1; }
}

/* Firefox < 16 */
@-moz-keyframes fadeinAuth {
    0% { opacity:0; }
    40% { opacity:0; }
    100% { opacity:1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeinAuth {
    0% { opacity:0; }
    40% { opacity:0; }
    100% { opacity:1; }
}

/* Internet Explorer */
@-ms-keyframes fadeinAuth {
    0% { opacity:0; }
    40% { opacity:0; }
    100% { opacity:1; }
}

/* Opera < 12.1 */
@-o-keyframes fadeinAuth {
    0% { opacity:0; }
   	40% { opacity:0; }
    100% { opacity:1; }
}

