body{
  background-color: black;
}

a{
  text-decoration: none;
  font-family: 'Brush Script MT', cursive;
  font-size: 50px;
  color: white;
}

.picwidth {
/* Bildgröße an Spalte anpassen*/
  width: 100%;
}

.bild{
  position: absolute;
  top: 150px;
  text-align: center;
  min-width: 320px;
}

/* Responsiveness wenn breiter als 768px*/
@media (min-width: 768px) {

  .picwidth {
  /* Bildgröße an Spalte anpassen*/
    width: 80%;
  }

  .bild{
    position: absolute;
    top: 50px;
  }
}

@media (min-width: 1200px) {

  .picwidth {
  /* Bildgröße an Spalte anpassen*/
    width: 70%;
  }

  .bild{
    position: absolute;
    top: 25px;
  }
}