/* CSS Document */
.three-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	margin: 1rem auto;
}
.three-buttons > div {
	margin-bottom: 1rem;
}
@media (min-width: 768px){
	.three-buttons {
		flex-direction: row;
	}
	.three-buttons > div {
		margin-bottom: 0;
	}
}