/* Acrylmal.css */
body {
  margin: 0;
  padding: 0;
  background-color: #6b2db7;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    font-size: 1.3em;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

header p {
    font-size: 1.3em;
  color: #FFF;
  font-style: oblique;
}

header p a {
    font-size: 1.3em;
  color: #FFF;
}

header img {
  height: 16vh;
  text-decoration: none;

}

.uebermich a {
  text-decoration: none;
  color: #ffff58;
  background-color: #4a484b;
  padding: 5px;
  border-radius: 10px;
}

.uebermich a:hover {
  background-color: rgb(156, 125, 164);
  padding: 5px;
  border-radius: 10px;
}

.krita a {
  text-decoration: none;
  color: #ffff58;
  background-color: #4a484b;
  padding: 5px;
  border-radius: 10px;
  
}

.krita a:hover {
  background-color: rgb(156, 125, 164);
  padding: 5px;
  border-radius: 10px;
}

.masonryblocks {
  width: 100%;
  font-size: 1.2em;
  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: 1vw;
}

.text {
  color: #FFF;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.Besucherzaehler {

  text-align: center;
  padding-bottom: 10px;

}

.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 1.2rem;
  background-color: #6b2db7;
  text-align: center;
  color: beige;
}


/* BACK TO TOP */
.backToTop {
  position: fixed;
  bottom: 35px;
  right: 25px;
  border-radius: 8px;
  transition: 0.3s;
  display: none;
}

.arrow img {
  width: 35px;
  height: 50px;
}

.backToTop:hover {
  transform: scale(1.2);
}

.sichtbar {
  display: block;
  animation: show 1s forwards;
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Bildschirm größer als 850px */

@media (min-width: 850px) {
  .masonryblocks img {
    display: inline-block;
    width: 65%;
    height: auto;
    flex-wrap: wrap;
    padding-left: 1vw;
    padding-right: 1vw;
   
  }
  header img {
    height: 15vh;
    font-size: 2.3em;
  }

}

/* Bildschirm größer als 1200px*/

@media (min-width: 1200px) {

  .masonryblocks {
      font-size: 2.1em;
  
  }

  header img {
    height: 15vh;
    font-size: 2.3em;
   
  }

}
  