p i {text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.6);}

.container {
  max-width: 900px;
  width: 100%;
  padding: 20px;
}



.button-wrapper {
  text-align: center; /* centreert inline-block elementen zoals jouw button */
  margin-bottom: 1em;
}

.button {
  display: inline-block;
  background-color: #FFD700;
  color: black;
  padding: 0.8em 1.4em;
  border-radius: 1.2em;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease, font-weight 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: left;
  width: auto;
  white-space: nowrap;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  color: black;
}

.mbutton-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em; /* optioneel: ruimte rond de knop */
}

.mbutton {
  display: inline-flex;
  align-items: center;
  gap: 0.6em; /* ruimte tussen icoon en tekst */
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8em 1.4em;
  border-radius: 1.2em;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease, font-weight 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}

.mbutton i {
  color: white; /* Icoon krijgt dezelfde kleur als tekst */
}

.mbutton:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2);
  color: white;
}

.mbutton:hover i {
  color: white; /* Zorgt ervoor dat het icoon niet van kleur verandert bij hover */
}

.responsive-image {
      display: block;
      margin: 0 auto;
      width: 50%;
      max-width: 150px;
	padding-bottom: 1em;
    }
