html {    
    background: url('pottfolio_background.jpg') no-repeat bottom fixed;     
    background-size: cover;
}


div {
  width: 640px;
  padding: 5px;
  border: 0px solid gray;
  border-radius: 15px 50px;
  margin: 0;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Höhe der div-Box */
  width: 500px; /* Breite der div-Box */
  margin-top: -200px; /* Damit der "Ausrichtungspunkt" in der Mitte der Box liegt */
  margin-left: -250px;
  position: absolute; /* positionieren */
  top: 50%; /* in die Mitte verschieben */
  left: 50%;
}


