body {
  font-family: Arial, sans-serif;
  background-color: #070707;
  text-align: center;
  padding: 20px;
  background-image: url('background_1.jpg');
  background-size: cover;
  background-position: center;
}

.button {
  display: block;
  width: 200px; /* of een gewenste breedte */
  padding: 10px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  margin: 10px auto; /* center the buttons horizontally */
  border-radius: 5px;
  position: relative;
}

.button.spotify {
  background-color: #1db954; /* Spotify green */
  color: #ffffff;
}

.button.soundcloud {
  background-color: #ff5500; /* SoundCloud orange */
  color: #ffffff;
}

.button.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); /* Instagram-kleurverloop */
  color: #ffffff;
}

.profile-image {
  margin-top: 50px;
}

.round-image img {
  width: 150px; /* Aanpassing: stel de breedte in op 150 pixels */
  height: auto;
  border-radius: 50%; /* voor de ronde afbeelding */
}

.square-image img {
  width: 300px; /* Aanpassing: stel de breedte in op 300 pixels */
  height: auto;
  border-radius: 0; /* voor de vierkante afbeelding */
}


.button.discord {
  background-color: #7289da; /* Discord blauw */
  color: #ffffff;
}

.button.youtube {
  background-color: #ff0000; /* YouTube rood */
  color: #ffffff;
}

/* Je had al een stijl voor Instagram, maar hier is het nogmaals voor referentie */
.button.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); /* Instagram-kleurverloop */
  color: #ffffff;
}

@keyframes shiny {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.button.gold {
  background: linear-gradient(45deg, #ffd700, #ffa500); /* Gold gradient */
  color: #fff; /* Text color set to white */
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: 200% 100%;
  animation: shiny 2s linear infinite;
}

.button.gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 215, 0, 0.4); /* Adjust the opacity to make it darker */
  transform: translate(-50%, -50%);
  z-index: -1; /* Move the shine behind the button content */
  border-radius: 50%;
  animation: shiny 2s linear infinite;
}

.footer {
  margin-top: 20px;
}

.footer-text {
  font-size: 12px;
  color: white; /* Tekstkleur wit maken */
}

.footer-description {
  font-size: 10px;
  max-width: 600px; /* Maximale breedte van de beschrijvingstekst */
  margin: 0 auto; /* Automatische marge aan beide zijden om de tekst te centreren */
  text-align: center; /* Tekst centreren */
  color: white; /* Tekstkleur wit maken */
}

.footer-logo {
  width: 90px;
  margin-top: 10px;
}