body {
  font-family: 'Ubuntu', sans-serif;
  background: url('https://cdn.pixabay.com/photo/2016/11/18/15/36/fir-trees-1835402_1280.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: scroll;
  color: #f5f5f5;
  text-align: center;
  padding: 50px 20px;
  margin: 0;
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.3); /* Dunkles Overlay */
  z-index: -1;
}

img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e4491d;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

p {
  font-size: 16px;
  color: #ccc;
  margin-top: 0;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.links a {
  display: inline-block;
  width: 90%;
  max-width: 400px;
  background: rgba(30, 30, 30, 0.85);
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 40px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid #444;
}

.links a:hover {
  background: rgba(50, 50, 50, 0.9);
  transform: translateY(-2px);
  /*box-shadow: 0 6px 14px #e4491d;*/
}

@media (max-width: 600px) {
  .links a {
    font-size: 15px;
    padding: 12px 16px;
  }
}