#entry-title{
    display: flex !important; 
    justify-content: center !important;
    align-items: center !important;
    text-align: justify !important;
}
#muteOverlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        #videoContainer {
            position: relative;
            display: inline-block;
        }
        #controls {
            width: 640px;
            background: black;
            display: flex;
            align-items: center;
            padding: 10px;
        }
        #playPause {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        #progressBarContainer {
            flex-grow: 1;
            background: gray;
            height: 5px;
            margin-left: 10px;
            position: relative;
        }
        #progressBar {
            width: 0%;
            height: 100%;
            background: red;
            position: absolute;
        }
        #additionalContent {
            display: none; /* Esta sección estará oculta por defecto */
            margin-top: 20px;
            background-color: #f0f0f0;
            padding: 20px;
        }