.quote-container .buttons {
    display: block;
    justify-content: center; /* Centers the buttons horizontally */
    	 /* Adds some space between the buttons */
}
.buttons{
	padding-top: 20px;
}

button#prev-btn,
button#next-btn {
    background-color: darkorange;
    border-color: darkorange;
}

.quote-container {
    margin-left: 20px;
}


@media only screen and (max-width: 465px) {
    .quote-container {
        min-height: 260px;
    }
}

@media only screen and (max-width: 621px) {
    .quote-container {
        min-height: 240px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .quote-container {
        min-height: 240px;
    }
}
