* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial,
    sans-serif;
}

body {
  background: #f5f5f5;
  text-align: center;
  padding: 20px;
}

.container {
  background: #414141;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  margin: 40px auto 20px auto;
  /* Startet weiter oben */
}

h1 {
  font-size: 22px;
  color: #bfbfbf;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #ba9537;
  margin-bottom: 15px;
}

.highlight {
  font-weight: bold;
  font-size: 20px;
  color: #aa7900;
}

.contact {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.contact a {
  color: #aa7900;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

.logo {
  max-width: 100%;
  height: 260px;
  margin-bottom: 20px;
}

/* Social media icon styles */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
}

.social-icons svg {
  width: 30px;
  height: 30px;
  color: #aa7900;
  transition: color 0.3s;
}

.social-icons a:hover svg {
  color: #ba9537;
}