.overview {
    background-image: url(../img/20220315_103333.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: 190px 380px;
    padding: 0;
    color: var(--light);
}
.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: 200px 110px;
    }
    .dane {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}