.mainly-content {
    margin-top: 30px;
    padding: 15px;
}

.media-player-container {
    /* margin: 50px 0px 70px 0px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#media-player,
#media-player-two {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#video,
#video-two {
    width: 100%;
    /* transform: scale(1.2); */
    transform-origin: center;
    /* border-radius: 20px; */
}

.video-container {
    border-radius: 10px;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    overflow: hidden;
    /* corta excesso */
}

#control {
    position: absolute;
}

.play {
    --animdur: 1s;
    --animn: pulse;
    will-change: transform;
    cursor: pointer;
}

.fullscreen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    border: none;
    border-radius: 0px;
    background-color: #4b8fd4;
    cursor: pointer;
    order: 1;
}


/* .fa-solid {
    color: green;
    font-size: 30px;
} */

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 20px;
    background-color: white; */
}


/* video::-webkit-media-text-track-display {
    padding: 10px;
} */

video::cue {
    font-size: auto;
    color: aliceblue;
    background-color: #000000ad;
}

.video-tip {
    margin-bottom: 0px;
    color: white;
    text-align: center;
    font-style: italic;
}

.content-title {
    margin-top: 10px;
}

.highlight {
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

[data-animation] {
    animation: var(--animn, none) var(--animdur, 0s) var(--animtf, linear) var(--animdel, 0s) var(--animic, infinite) var(--animdir, alternate) var(--animfm, none) var(--animps, running);
}