body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #1a1a1a;
  color: white;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease;
}

.background.visible {
  opacity: 1;
}

.container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
  text-align: center;
  animation: fadeIn 1s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.profilbild {
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}


h1 {
  font-size: 24px;
  margin: 10px 0 5px;
}

p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 25px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.links a {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.links a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  cursor: url('cursor.cur'), auto;
}

<style>
footer {
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.6;
  position: relative; /* wichtig für Tooltip-Position */
  display: inline-block;
  cursor: pointer;
}

footer {
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.6;
}


.links a {
  cursor: pointer;
}