body {
    margin: 0px;
    background-color:black;
    background-image:url(https://matiaswelz.art/bgpattern.png);
    font-family: monospace;
}
.banner {
background-image:url(https://matiaswelz.art/banner.png);
height: 200px;
width: 100%;
background-position-x: center;
    
}   
#footer {
    transform:scaleY(-1);
    min-height: 200px;
    height: 100%;
    background-repeat: repeat;
}
.divider {
    background-color: black;
    height: 6px;
    width: 100%;
    opacity: 0.8;
}    
#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.img-thumbnail {
    position: relative;
    width: 50%;
    height: 200px; /* Adjust based on your preference */
    overflow: hidden;
    filter: grayscale(1);
}

.img-thumbnail img {
    position: absolute;
    width: 100%;
    min-width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.img-thumbnail img.rotate-image {
    transform: rotate(90deg) translateX(-50%);
}
.img-thumbnail img.wide-image {
    width: 199%;
    margin-left: -25%;
    min-width: 100%;
    margin-top: -19%;
}
.image-title {
    position: absolute;
    width: 60%;
    height: 40px;
    text-align: right;
    z-index: 9;
    margin-top: 160px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    transition: transform 0.3s ease;
    transform: scale(1);
    padding-top: 13px;
    padding-right: 20px;
}

.img-thumbnail:hover .image-title {
    transition: transform 1s ease;
    transform: scale(1.1);
    background-color:#fbfe00;
    color:black;
    font-weight:bolder;
}
.img-thumbnail:hover {
filter: grayscale(0);
}
.img-thumbnail:hover .img-thumbnail-dist {
    display:none;
}
.modal {
    display:none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    background-image: var(--gif-texture);
}

.modal img {
    max-width: 90%;
    max-height: 100%;
    border: 5px solid black;
}

:root {
  --gif-texture: url(https://matiaswelz.art/texture-vhs.gif);
  --noise-texture: url(https://matiaswelz.art/texture-noise.png);
}

.img-thumbnail-dist:after {
content: "";
    display: flex;
    position: absolute;
    background-image: var(--gif-texture);
    height: 580px;
    width: 960px;
    background-repeat: repeat;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 40%;
    z-index: 3;
}

.noise:hover:after{
  opacity: 0; /* Hide the GIF texture on hover */
}
.img-thumbnail-dist:hover:after {
  opacity: 0; /* Hide the GIF texture on hover */
}
.noise:after {
    background-image: var(--noise-texture);
    height: 100%;
    width: 100%;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 3;
    content: "";
    position: absolute;
    /*opacity: 64%;*/
}    
#title-noise:after {
    background-image: var(--noise-texture);
    background-color:black;
    opacity:0.2;
} 
#fullTitle {
    color:white;
    max-width: 90%;
    width:100%;
} 
#fullWrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
} 
#fullTitle span {
    background-color: black;
    color: #fe0198;
    padding: 5px;
    display: inline-block;
    font-size: large;
    font-weight: 200;
}
#fullBGNoise {
    background-color: azure;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.4;
}