html {
	scroll-behavior: smooth;
}

.button-container {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
	width: 100%;
}

.button {
	align-items: center;
	justify-content: center;
    flex: 1;
    display: flex !important;
    padding: 10px 20px;
    text-align: center;
    background-color: #fff6df;
    border: 1px solid #e8bf93;
    border-radius: 20px;
    color: #000;
    text-decoration: none;
    line-height: 1.5;
    font-size: 1.1em !important;
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Use this if buttons are in a row and need to be of equal width */
@media (min-width: 601px) {
    .button-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
		align-items: stretch;
    }

    .button {
		width: 100%;
		box-sizing: border-box;
        margin-bottom: 2px;
		padding: 15px !important;
		font-size: 1.4em !important;
    }
	
	.button:last-child{
		margin-bottom: 0;
	}
}