body {
    padding: 0;
    margin: 0;
    overflow: hidden;

    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    display: inline-flex;
    position: relative;
}

.fullScreenButton {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    height: 36px;
    width: 36px;
    padding-bottom: 1px;
    right: 43px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
}

.fullScreenButton svg {
    fill: transparent;
}

.fullScreenButton svg:hover {
    fill: #ee8208;
}

.banner {
    /* border: 5px solid red; */
    display: none;
    /* overflow: hidden; */
    box-sizing: border-box;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    max-width: 100vw;
    pointer-events: none;
}