.overview {
    background-image: url(../img/20231102_094632.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    margin-top: -88px;
}
.katalog h2 {
    font-size: 77px;
    margin: 170px 250px 150px 270px;
    padding: 0;
    color: var(--light);
}
.katalog ul {
    list-style: none;
}
.katalog ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0;
}
.katalog ul a {
    color: var(--dark);
    text-decoration: none;
}
.katalog ul a:hover {
    color: var(--light);
}
button {
    width: 280px;
    height: 50px;
    font-size: 30px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    background: rgba(255, 255, 255, 0.3)
}
.pojazdy {
    margin-bottom: 140px;
    margin-top: 150px;
}
.pojazdy h3 {
    font-size: 30px;
    margin: 55px;
}
.pojazdy ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.pojazdy ul li
{
	margin:10px;
	padding:5px;
}
.tile {
    width: 350px;
    height: 250px;
    border: solid 2px black;
}
.pojazdy ul a:hover {
    color: #ff0000;
}
.dane {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 14px;
}
@media (max-width: 768px) {
    .tile {
        width: 250px;
        height: 150px;
    }
    .tile img {
        width: 250px;
        height: 150px;
    }
    .katalog h2 {
        font-size: 54px;
        margin: 90px 35px 20px 35px;
    }
    .katalog ul {
        padding: 10px;
    }
    .overview {
        flex-direction: column;
    }
    .dane {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .pojazdy img {
        width: 210px!important;
        height: 120px;
        margin: 8px!important;
    }
}