body {
    height: 100%;
    margin: 0;
    background-image: url("Bilder/Titlepage_Opacity60.jpg"); 
    z-index: -100;
    background-attachment: fixed;
    background-position: 100% 10%;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Crimson Text', serif;
}


body::-webkit-scrollbar {
    width: 0.7em;
    height: 0.7em;
  }
   
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  }
   
  body::-webkit-scrollbar-thumb {
    background-color: rgba(150, 145, 140, 0.7);
    border-radius: 4px;
  }
  body::-webkit-scrollbar-thumb:hover {
    background-color:rgba(150, 145, 140, 1);
  }

html {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}


a:link {
    color: #733030;
    text-decoration: none;
  }
  a:visited {
    color: #733030;
    text-decoration: none;
  }
  a:hover {
    color: #994040;
    text-decoration: none;
    cursor: pointer;
  }
  a:active {
    color: #733030;
    text-decoration: none;
  }



.menue{
    position: absolute;
    text-align: center;
    left: 10%;
    width: 80%;
    bottom: 15%;
    background-color: rgba(227, 222, 216, 1);
    padding-top: 5%;
    padding-bottom: 5%;
}

#projekt{
    position: absolute;
    left: 10%;
    width: 80%;
    top:100%;
    background-color: rgba(227, 222, 216, 0.842);
}

.projektText{
    position:absolute;
    padding: 5% 10%;
    background-color: rgba(227, 222, 216, 0.842);
}



.zitat{
    text-align: left;
    top: 14%;
    position:absolute;
    padding: 0% 20%;
}

button{
    background-color: grey;
    border: none;
    border-radius: 4px;
    z-index: 1;
    color: white;
    padding: 15px 32px;
    margin: 20px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #994040;
    color: white;
}

.animated-text {
    word-wrap: break-word;
    white-space: nowrap;
    animation: einblenden 1s ease-out;
}
   
@keyframes einblenden {
from { opacity:0; font-size: 47px;}
to { opacity:1; font-size: 50px;}
}



#display-under-500px {
    width: 1000%;
    height: 1000%;
    position: absolute;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.9 );
    color: white;
    display: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media only screen and (max-width: 600px) {
  #display-under-500px {
    display: block;
  }
  body {
      overflow: hidden;
  }
}