@font-face {
    font-family: 'Expletus';
    src: url("fonts/ExpletusSans-SemiBold.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'aspace';
    src: url("fonts/aspace.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  body {    
   /* background: linear-gradient(45deg, #b8becf, #e8e8e8);
    background-size: 400% 400%;*/
    background-image: url("../img/bg1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    animation: gradient 45s ease infinite;
    text-align: center;    
    padding-top: 40vh;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

  body,
  h1,
  p {
    font-family: 'Expletus', "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-align: center;
    /*color: rgb(227, 227, 227);*/
  }


  h1 {
    font-family: 'Expletus','aspace', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 0.5em;
    color: #555555;
  }


  p {
    font-size: 1.0rem;
    color: #fcfaf5;
    margin: 0 0 10px;
  }

  a {
    color: #fcfaf5;
    text-decoration: none;
    text-align: center;
  }



  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;        
    text-align: center;
    padding: 10px 0;
}

.footer a:hover {
  border-bottom: 2px dotted white; /* Gepunktete Unterstreichung */
}

img {
  max-width: 1024px;
  width: 100%;
  margin: 5px;
}