#combat {
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
    align-items: center;
}

/*#combat:after {
    background-image: url("/storage/app/media/combat/background.png");
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: '';
}*/

#combat .content {
    color: #fff;
    z-index: 2;
}

#combat .content p {
    font-size: 2rem;
    line-height: 2rem;
    text-transform: uppercase;
    padding: 0 1rem;
}

#combat .content p span {
    display: block;
}

#combat .content p span:nth-child(2) {
    text-align: center;
    font-size: 4rem;
    line-height: 4rem;
}

#combat .content p span:nth-child(3) {
    text-align: right;
}

@media (max-width: 500px) {
    #combat .content p {
        font-size: 1.15rem;
        line-height: 1.5rem;
    }
    #combat .content p span:nth-child(2) {
        font-size: 3rem;
        line-height: 3rem;
    }
    #combat .content p span:nth-child(3), #combat .content p {
        text-align: center;
    }
}

#combat .left, #combat .right {
    width: 75%;
    background-color: red;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-height: 100%;
    clip-path: polygon(0px 0px, 0px 100%, 40% 100%, 100% 0px);
}

#combat .right {
    right: 0;
    left: inherit;
    clip-path: polygon(65% 0px, 6% 100%, 100% 100%, 100% 0px);
}

#combat video {
    max-width: 100%;
    object-fit: cover;
}