.nadpis {
    text-align: center;
    font-size: 50px;
}

.podnadpis {
    text-align: center;
    margin-top: 75px;
}

.hlasky-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}


.hlaska {
    text-align: center;
}

.popisok {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    pointer-events: none;
    font-weight: bold;
}

.zabalenie {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.prvyobrazok {
    display: block;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 40px solid white;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.zabalenie:hover .play {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .nadpis {
        font-size: 36px;
    }

    .podnadpis {
        font-size: 20px;
        margin-top: 40px;
    }

    .hlasky-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hlaska {
        max-width: 90%;
    }

    .prvyobrazok {
        width: 150px;
        height: 150px;
    }

    .play {
        border-left: 30px solid white;
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
    }

    .popisok {
        font-size: 16px;
    }
}
