@import 'fonts.css';

* {
    margin: 				0;
    padding: 				0;
    box-sizing: 			border-box;
}
html {
    font-family: 			'Alegreya', serif;
    font-size: 				15px;
    color: 					white;
}
body {
    background-image: 		url(../media/mountains.jpg);
    background-position:	center;
    background-size: 		cover;
}
.quote {
    position: 				absolute;
    top: 					50%;
    left:					60px;
    right:					60px;
    width: 					auto;
    max-width:				880px;
    transform: 				translatey(-50%);
    margin:					0 auto;
    opacity: 				.9;
    font-weight: 			700;
    text-align: 			center;
    text-shadow: 			0 0 30px #000000;
}
.quote #quote {
    display:				block;
    font-size: 				3rem;
}
.quote #author {
    display:				block;
    margin-top:				50px;
    font-size: 				2rem;
}
.footer {
    position:				absolute;
    left:					60px;
    right:					60px;
    bottom:					60px;
    width: 					auto;
    max-width:				880px;
    margin:					0 auto;
    font-family: 			'Roboto Condensed', sans-serif;
    font-size:				4rem;
    text-align: 			center;
    text-shadow: 			0 0 15px #000000;
}
.footer a {
    color:					white;
}

@media (max-width: 767px) {
    .quote #quote {
        font-size: 				2rem;
    }
    .quote #author {
        margin-top:				25px;
        font-size: 				1rem;
    }
    .footer {
        font-size:				3rem;
    }
}