
*{
    font-family: 'Courier New', Courier, monospace; scroll-behavior: smooth;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
img{-webkit-tap-highlight-color: transparent;}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-image: url(images/grid.webp);
}

.gallery{
    width: 80%;
    height: 90vh;
    max-width: 1600px;
    max-height: 800px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    
}

.gallery_image{
    width:30%;
    height: calc(50% - 20px);
    min-width: 300px;
    min-height: 200px;
    margin: 10px;
    overflow: hidden;
    border: solid black 2px;
    border-radius: 5px;
}

.image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s linear;
    cursor: pointer;
}
.image:hover {transform: scale(1.1);}

.popup{
    position: fixed;
    width: 95%;
    height: 95vh;
    max-width: 1600px;
    max-height: 800px;
    border-radius: 5px;
    background-color: rgb(233, 233, 233);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    transition: 0.5s;
    border: solid black 2px;
    box-shadow: #333 0px 0px 50px 1px;
}
.popup_con{
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 95%;
    width: 94%;
    justify-content: center;
    align-items: center;
    
}

.opis {
    display: flex;
    font-size: 1.2em;
    color: #333;
    text-align: center;
    display: table-column;
    width: 42%;
    height: calc(73% - 20px);
}

.desc{height: 400px;display: flex;flex-direction: column;align-items: center;}

.popup_title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
}
.popup_description{
    display: flex;
    text-align: left;
    width: 80%;
    color: black;
    display: flex;
    justify-content: center;
    white-space: pre-line;
    font-size: 1.9vw;
    
}

.popup_image{
    width: 80%;
    display: flex;
    height: calc(100% - 20px);
    min-width: 300px;
    min-height: 200px;
    margin: 10px;
    overflow: hidden;
    transition: 0.5s;
    justify-content: center;
    object-fit: contain;
    padding: 5px;
    cursor: pointer;
}


hr{border-radius: 200px;text-decoration: none;border: solid black 1.5px;width: 100%;}


.hidden {display: none;}

.popup_close{
    position: absolute;
    font-size: 2em;
    cursor: pointer;
    top: 10px;
    right: 10px;
    width: 25px;
}

.arrows {
    display: flex;
    justify-content: space-between;
    margin-top: 2vw;
}

.a_left, .a_right{
    cursor: pointer;
    user-select: none;
    top: 50%;
    left: 50%;
    width: 25px;
    outline: none;
}

#full_size{
    position: fixed;
    background-color: black;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: none;
}

#full_image{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#full_close{
    right: 1%;
    position: absolute;
    margin: 20px;
    width: 30px;
    cursor: pointer;
}
.add0{position: absolute;width: 5%;z-index: -2; top: 120%;rotate: -20deg; right: 10%;display: block;}
.add1{position: absolute;width: 15%;z-index: -2; top: 35%; right: 5%;display: block;}
.add2{position: absolute;width: 7%;z-index: -2; top: 10%; left: 5%;display: block;}
.add3{position: absolute;width: 10%;z-index: -2; top: 255%; left: 5%;display: block;}
.add4{position: absolute;width: 7%;z-index: -2; top: 105%; right: 5%;display: block;}
.add5{position: absolute;width: 3%;z-index: -2; top: 205%; right: 5%;display: block;}
.add6{position: absolute;width: 50%;z-index: -2; top: 105%; left: -10%;rotate: 10deg;box-shadow: #333 5px 1px 15px -2px;display: block;}

.tymczasow{
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    height: 400px;
    background-color: rgb(243, 243, 243);
    justify-content: center;
    margin: 30px;
    border-radius: 10px;
    border: 2px solid black;
    padding: 10px;
}

.tymczasow1{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 80%;
    flex-direction:unset;
}

.tym_l, .tym_r{
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
}
.uc{display: flex;width: 90%;object-fit: cover;}
h2{width: 100%; display: flex;justify-content: center;margin:10px;}


