body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    flex-direction: column;
    /* Hogy a tartalom függőlegesen igazodjon */
}

.container {
    margin-bottom: 20px;
    text-align: center;
    width: 75%;
}

label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 2px solid #007BFF;
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

#finish {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

#demo {
    font-size: 1.5rem;
    color: #007BFF;
    font-weight: bold;
    margin-top: 20px;
}

#image img {
    margin-top: 20px;
    max-width: 50%;
    /* A kép nem tölti ki a teljes képernyőt */
    height: auto;
    border-radius: 10px;
}

/* Reszponzív stílusok */
@media (max-width: 768px) {
    select {
        max-width: 100%;
    }

    #image img {
        max-width: 80%;
        /* Mobil eszközökön kisebb legyen a kép */
    }
}

@media (max-width: 480px) {
    #demo {
        font-size: 1.2rem;
    }

    #image img {
        max-width: 90%;
    }
}