.btn {
	display: inline-block;
	padding: 10px 30px 8px;
	height: 30px;
    text-decoration: none;
    line-height: 1.3;
	cursor: pointer;
	text-align: center;
	font-size:  16px;
    background: #9bb475; color: #fff;
	border-radius: 3px; border: none;

}


:root {
    --color-wit: #ffffff;
    --color-roze: #D996F7;
    --color-paars: #662481;
    --bs-body-font-size: 1.4rem; 
    --standaard-margin-bottom: 2.2rem;
}

html {
	height: 100%;
	font-size: 62.5%;
}

p + h3 {
	margin-top: 3rem;
}


.button,
.button:hover,
.button:focus,
.mce-content-body a.button[data-mce-selected] {
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.6rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.button.paars,
.gform_button  {
    background-color: var(--color-paars) !important;
    color: var(--color-wit) !important;
}
.button.paars:hover,
.gform_button:hover {
    color: var(--color-paars) !important;
    background-color: var(--color-roze) !important;
}
.button:has( + br + a) {
	margin-bottom: 1.6rem;
}


p:has( .button.geef) {
    margin-bottom: 6rem;
}


.gallery {
    display: grid;
	grid-template-columns: 1fr;
    gap: 1rem;
	margin-bottom: var(--standaard-margin-bottom);
}
.gallery .gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 2rem;
}
.gallery .gallery-item img {
	max-height: 100px;
    width: 100%;
}

/***********************************************
TABLET
***********************************************/
@media (min-width: 768px) {
    :root {
        --bs-body-font-size: 1.6rem; 
    }
	.button:has( + br + a) {
		margin-bottom: 0;
		margin-right: 1.2rem;
	}
	.button:has( + br + a) + br {
		display: none;
	}
	
	.gallery {
		grid-template-columns: 1fr 1fr 1fr;
	}
}