body{
    background-color: rgb(138, 98, 86);
    margin: 0px;
}

.sectionPainting{
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center,rgb(196, 168, 152), transparent), radial-gradient(ellipse at center, #64290f, transparent);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}

.painting{
  width: 100vw;
  height: 100vh;
  background-image: url(../images/SCP099frei.webp);
  background-repeat: no-repeat;
  background-size:contain;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

.eye1{
  grid-row: 1;
  grid-column: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-name: eye1animation;
  animation-duration: 20s;
  animation-fill-mode:forwards;
  animation-iteration-count: infinite;
  animation-delay: 20s;
}

.eye2{
  grid-row: 2;
  grid-column: 2;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-name: eye2animation;
  animation-duration: 20s;
  animation-fill-mode:forwards;
  animation-iteration-count: infinite;
  animation-delay: 10s;
}

.eye3{
  grid-row: 4;
  grid-column: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-name: eye3animation;
  animation-duration: 20s;
  animation-fill-mode:forwards;
  animation-iteration-count: infinite;
  animation-delay: 5s;
}

.sectionFloor{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    background-image: url("../images/parkett.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-content: flex-end;
    padding-top: 10vh;
    

}

.akte{
    width: 80vw;
    height: auto;
    max-width: 700px;
    background-color: white;
    padding: 10px 10px 50px 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    h1{
      color: darkred;
    }

}
@keyframes eye1animation {
  0%{opacity: 0; background-image: url(../images/augezug.webp)} 
  30%{opacity: 1; background-image: url(../images/augezug.webp)}
  30.01%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  34%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  35%{opacity: 1; background-image: url(../images/augezug.webp)}
  35.01%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  74%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  75%{opacity: 1; background-image: url(../images/augezug.webp)}
  80%{opacity: 0; background-image: url(../images/augezug.webp)}
}
@keyframes eye2animation {
  0%{opacity: 0; background-image: url(../images/augezug.webp)} 
  30%{opacity: 1; background-image: url(../images/augezug.webp)}
  30.01%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  34%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  35%{opacity: 1; background-image: url(../images/augezug.webp)}
  35.01%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  74%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  75%{opacity: 1; background-image: url(../images/augezug.webp)}
  80%{opacity: 0; background-image: url(../images/augezug.webp)}
}
@keyframes eye3animation {
  0%{opacity: 0; background-image: url(../images/augezug.webp)} 
  30%{opacity: 1; background-image: url(../images/augezug.webp)}
  30.01%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  34%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  35%{opacity: 1; background-image: url(../images/augezug.webp)}
  35.01%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  74%{opacity: 1; background-image: url(../images/augeoffend.webp)}
  75%{opacity: 1; background-image: url(../images/augezug.webp)}
  80%{opacity: 0; background-image: url(../images/augezug.webp)}
}


@media screen and (min-width: 1000px) {
  .painting{
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .eye1{
    grid-row: 1;
    grid-column: 1;}

  .eye2{
    grid-row: 2;
    grid-column: 4;}

  .eye3{
    grid-row: 4;
    grid-column: 1;}

}

@media screen and (min-width: 1500px) {
  .painting{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .eye1{
    grid-row: 1;
    grid-column: 1;}

  .eye2{
    grid-row: 2;
    grid-column: 5;}

  .eye3{
    grid-row: 4;
    grid-column: 2;}

}
