/* BOX */
.boxRow {
    width: auto;
    min-height: 250px;

    padding-top: 3%;

    text-align: center;
}

.box {
    min-width: 325px;
    width: 20vw;
    min-height: 250px;
    height: fit-content;

    margin: 1vh;

    background-color: rgb(247, 253, 253);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);

    display: inline-block;
    vertical-align: top;
    border-radius: 10px;
}

.textBox {
    padding-left: 5%;

    text-align: left;
}

.ask {
    width: 100%;
    min-height: 30px;

    padding-top: 20px;
    padding-bottom: 20px;

    font-size: 120%;
    font-weight: bold;
    text-align: center;

    color: var(--text);
    background-color: rgb(247, 253, 253);

    border: none;
    border-radius: 10px;
}

.ask:hover {
    color: rgb(54, 52, 52);
    text-decoration: underline;
    content: "» WYBIERZ OFERTE «";
}

/* BOX */

/* TEXT */

i {
    text-decoration: underline;
}

h2,
h4 {
    text-align: center;
}

sub {
    font-size: small;
    font-weight: 300;
}

.textBox>p {
    line-height: 25px;

    display: inline-block;
}

/* TEXT */

/* MOVIE BOX */
.movie {
    min-height: 200px;
    width: 60vw;
    min-width: 300px;
}

.movieBox {
    min-height: 200px;
    width: 60vw;
    min-width: 300px;

    margin-left: auto;
    margin-right: auto;
    padding: 1vw;

    text-align: center;

    color: var(--text);
    background-color: rgb(247, 253, 253);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);

    border-radius: 10px;
}

.imageBox {
    min-height: 200px;
    min-width: 200px;
    width: fit-content;

    margin-left: auto;
    margin-right: auto;
    margin: 1vh;
    padding: 1vw;

    text-align: center;

    color: var(--text);
    background-color: rgb(247, 253, 253);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);

    display: inline-block;
    vertical-align: top;
    border-radius: 10px;
}

.imageBox > img {
    min-height: 200px;
    max-height: 600px;
    min-width: 200px;
    max-width: 100%;
}

/* MOVIE BOX */