/* qalerie */
.qalerie {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-flow: row dense;
    grid-gap: 1em;
    justify-content: center;
    font-size: 1em;
    overflow: hidden;
    padding-right: 10px;
}
.qalerie > img {
    position: relative;
    background-color: #FFF;
    border: 0.4% #555 solid;
    padding: 0.2em;
    width: calc(100% - 0.4em);
    color: #222;
    text-align: center;
    text-decoration: none;
    transition: transform 0.4s;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, .25);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .25);
    cursor: pointer;
}
.qalerie > img.twoslots {
    grid-column: span 2;
}
.qalarieSquare {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
@media only screen and (max-width: 440px) {
    .qalerie > img.twoslots {
        grid-column: span 1;
    }
}
.qalerie > img:hover {
    transform: scale(1.02);
    transition: transform 0.1s;
    -webkit-box-shadow: 2px 4px 5px rgba(0, 0, 0, .25);
    box-shadow: 2px 4px 5px rgba(0, 0, 0, .25);
}
@keyframes blendTwo {
    0% {   opacity: 1; }
    25% {  opacity: 1; }
    50% {  opacity: 0; }
    75% {  opacity: 0; }
    100% { opacity: 1; }
}

.container.img-hr{
    position: relative;
    height: 24vw;
    max-height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gezeichnetHeader{
    padding: 20px;
    background-color:white;
}

body{
    background-color: #c2b89f;
    background-image: url("/projekte/Ausmalbilder/img/malbuch_bg.webp");
}

.downloadbutton-ausmalbilder{
    display: inline-block;
    background-color: #c2b89f;
    border-radius: 15px;
    padding: 10px;
    transition: all 0.1s;
    color: #464239;
}
.downloadbutton-ausmalbilder:hover{
    transform: scale(1.02);
    box-shadow: 2px 4px 5px rgba(0, 0, 0, .25);
}

.redbubble{
    padding: 20px;
    background-color:#E7E3E3;
}

/* Images */
    
.loopImage-3{
    position: relative;
}
.loopImage-3>img{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    animation-duration: 9s;
    animation-iteration-count: infinite;
}
.loopImage-3>img:first-of-type{
    position: relative;
    opacity: 1;
    animation-name: loopImage-3_1;
}
.loopImage-3>img:nth-of-type(2){
    animation-name: loopImage-3_2;
}
.loopImage-3>img:nth-of-type(3){
    animation-name: loopImage-3_3;
}

@keyframes loopImage-3_1 {
}
@keyframes loopImage-3_2 {
    23%  {opacity: 0;}
    33%  {opacity: 1;}
    66%  {opacity: 1;}
    67%  {opacity: 0;}
}
@keyframes loopImage-3_3 {    
    56%  {opacity: 0;}
    66%  {opacity: 1;}
    89%  {opacity: 1;}
    99%  {opacity: 0;}
}