@font-face {
    font-family: 'Acier';
    src: url('assets/acier.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    background-color: black;
    display: flex;
    align-items: center;
    /* vertikal zentriert */
    justify-content: center;
    /* horizontal zentriert */
    min-height: 100vh;
    /* gesamte Höhe */
    flex-direction: column;
}

h1,
h3 {
   
    color: white;
    font-family: 'Acier';
}

h1 {
     background: linear-gradient(90deg,
        
            #b77a00,
            #f5bf6e,
            #fff8dc,
            #d49d37,
            #b8810b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4vw;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 2vw;
    color: white;
}

#logo {
    height: 40vh;
}

footer p {
    color: white;
    font-family: sans-serif;
    font-size: 1vw;
    margin-top: 15em;
}

.social-links {
  text-align: center;
  margin-top: 2rem;
}

.social-links a {
  color: #d4af37; /* Goldton passend zu deinem Text */
  margin: 0 10px;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff8dc; /* heller Goldton beim Hover */
}
