body {
  background-color: #f8f9fa; /* Hintergrundfarbe */
  color: #212529; /* Textfarbe */
  font-family: Arial, sans-serif; /* Schriftart */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 500px;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* Für runde Avatare */
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #212529;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-link i {
  width: 30px;
  text-align: center;
  margin-right: 15px;
}

.youtube {
  background-color: #ff0000;
  color: #fff;
}

.twitch {
  background-color: #6441a5;
  color: #fff;
}

.instagram {
  background-color: #c13584;
  color: #fff;
}