/* Gallery */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-and-name img {
    width: 300px; /* Ustawia szerokość logo */
    height: 200px; /* Zachowuje proporcje obrazu */
    margin-left: 90px;
  }

.title-text{
    text-align: center;
    margin-top: 30px;
}
.title-text p{
    margin: auto;
    font-size: 35px;
    color: #000;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#000, #fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    width: 100%;
}

.gallery a {
    display: block;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    width: 100%;
}

.gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 480px) {
    .logo-and-name{
        text-align: center;
    }
    .logo-and-name img{
        margin-left: 0;
    }  
}
