/* Minification failed. Returning unminified contents.
(52,1): run-time error CSS1019: Unexpected token, found '}'
 */

body {
    background-color: darkblue;
}

.body-content {  
    color: #DDD;
}

.quote-container {
	margin: 20vh auto auto auto;
	width: 50vw;
	padding: 30px;
	border-radius: 5px;
	background-color: #DDD;
}
.quote {
    font-size: 1.5rem;
    background-color: #DDD;
}
	.quote > i {
		font-size: 2.5rem;
		padding: 0 10px;
	}
	.quote > p {
		font-size: 1rem;
		text-align: right;
	}

.quote-footer {
    display: flex;
    justify-content: space-between;
    background-color: #DDD;
}
    .quote-footer > .twitter-button {
        padding: 5px;
        border-radius: 5px;
        background-color: darkblue;
        cursor: pointer;
    }
		.quote-footer > .twitter-button i {
			font-size: 1.5rem;
			color: #DDD;
		}
	.quote-footer > .quote-button {
		border-radius: 5px;
		border: 0;
		background-color: darkblue;
		color: #DDD;
		cursor: pointer;
	}
}
