/* uebermich.css */
body {
  background-color: #3a126a;
  padding-top: 30px;
}

header {
  font-size: 1.3rem;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

header p {
  font-size: 1.3rem;
  color: #FFF;
  font-style: oblique;
}

header img {
  height: 14vh;
  text-decoration: none;

}

.galerie p {
  font-size: 1.3rem;
  color: #FFF;
}

.galerie a {
  text-decoration: none;
  color: #ffff58;
  background-color: #3a3b3f;
  padding: 10px;
  border-radius: 15px;
}

.galerie a:hover {
  background-color: rgb(156, 125, 164);
  padding: 5px;
  border-radius: 10px;
}

article {
  width: 100%;
  height: auto;
  text-align: center;

}

article p {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.1;
  font-style: italic;
  color: #fff;
  width: 90%;
  margin-left: 0px;
  text-align: center;

}


.masonryblocks {
  width: 100%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;

}

.masonryblocks img {
  display: inline-block;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  padding-left: 1vw;
  padding-right: 3vw;

}


footer {

  left: 0;
  padding-top: 3%;
  padding-bottom: 3%;
  width: 100%;
  font-size: 1.2rem;
  background-color: #3a126a;
  text-align: center;
  color: #fff;
}


/* Bildschirm größer als 400px */
@media (min-width: 400px) {
  .masonryblocks img {
    display: inline-block;
    width: 50%;
    height: auto;
    flex-wrap: wrap;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}

/* Bildschirm größer als 1000px */
@media (min-width: 1000px) {

  .masonryblocks img {
    display: inline-block;
    width: 30%;
    height: auto;
    flex-wrap: wrap;
    padding-left: 1vw;
    padding-right: 1vw;
  }

  article p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 2.1;
    color: #fff;
    width: 50%;
    margin-left: 0px;
    text-align: center;

  }

}