#center{
    text-align: center; /* középre igazítja a szöveget és képeket */
    display: flex;
    flex-direction: column; /* az elemek egymás alatt legyenek */
    align-items: center; /* a belső elemek is középre igazítva */
    
}
#center #logo {
    width: 50%;
    margin-bottom: 5%;
    margin-top: 2%;
}

#center #footer {
    width: 50%;
    margin-bottom: 5%;
    margin-top: 2%;
}



body {
    background-color: #0090ea ;
    font-family: Arial, Helvetica, sans-serif;
    color: #292d32;
    margin: auto;
    margin-right: 10%;
    margin-left: 10%;
    margin-bottom: 0;
}

h1 {
    font-size: 2vw;
}
h2 {
    font-size: 1.2vw;
}

#block {
    background-color: #f1f1f1;
    height: 100vh;
    display: flex;
    justify-content: center; /* középre igazítás vízszintesen */
    align-items: center; /* középre igazítás függőlegesen */
    flex-direction: column; /* a tartalom egymás alatt helyezkedjen el */
}
#cars {
    width: 70%;
    display: block;
    margin: auto;
    margin-top: 10%;
}
