.content {
    max-width: 800px;
    margin: 0 auto; /* zentriert die Seite */
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  /* Scrollbar für die gesamte Seite (optional) */
  body::-webkit-scrollbar {
    width: 12px;
  }
  
  body::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
  }
  
  body::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  
#title{
    top: 0;            /* oben am Bildschirm */
    left: 0;
    position: fixed;  /*dass der keine goodboy oben bleibt wenn er das nciht tut nigga = vergasen */
    color:#d9bb9b;
    fill: gray;
    width: 100%;
    height: 100px;
    background-color: black;
    opacity: 0.85;      
    backdrop-filter: blur(100px);      
    content: center;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0;
    margin: 0;
    align-content: center;
    display: flex;           /* Flexbox aktivieren */
    justify-content: center; /* horizontale Zentrierung */
    /* optional: vertikale Zentrierung */
    align-items: center;     
    z-index: 1000;     /* damit er über allem liegt */
}

body{
    background-color: rgb(249, 233, 214);
    display: grid;
    place-items: center; /* horizontal & vertikal zentriert */
    margin: 0 auto;
}

html{
    scroll-behavior: smooth;
}

#penis{
    width: 100%;
    height: 100%;
}

#titletext{
    color: white;
    align-self: center;

}

#websitecontainer{
    margin-top: 150px;
    width: 90%;
    height: 5000px;
    align-self: center;
}

#section1{
    height: 500px;
    width: 100%;
    display: grid;
    place-items: center;
}

#image{
    max-width: 100%;
    max-height: 400px;
}

#textnormal{
    font-weight: 700;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#section2{
    height: 500px;
    width: 100%;
    display: grid;
    place-items: center;
}