﻿@charset "utf-8";

.introBG  {
    background-image: url("img/top-galeria-budynek_01.jpg");
    background-position: 25% 50%;
}

.galleryStages {
    text-align: center;
    max-width: 1200px;
    margin: auto;
    background-color:black
}

.stage {
    font-family: Charm-Regular, Arial, sans-serif;
    display: inline-block;
    width: 40%;
    height: 365px;
}

.stage .mobileImg {
    display: none;
    width:100%;
    filter: saturate(1) contrast(1) brightness(1);
}

.stage .desktopImg {
    display: block;
    width: 100%;
}

.stage a.transition img {
    transition: filter 0.4s;
}

.stage a.filter img {
    filter: saturate(1.2) contrast(1.1) brightness(1.3);
}

.stage a > div {
    z-index: 1;
    font-size: 12vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 4px 4px rgba(0, 0, 0, 0.55);
    color: white;
}

@media only screen and (min-width: 1201px) {
    .stage a > div {
        font-size:70px;
    }
}

@media only screen and (max-width: 1200px) {
    .galleryStages {
        text-align: center;
    }
    
    .stage {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .stage .mobileImg {
        display: block;
    }
    
    .stage .desktopImg {
        display: none;
    }
}