.videoContainer {
    position: relative;
    width: 100%;
    max-width: 950px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}
video {
    width: 100%;
    display: block;
    border-radius: 20px;
}
.controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 20px 20px;
    font-family: 'Istok Web', serif, 'Roboto', sans-serif;
    transition-duration: 0.25s;
}
.controls button,
.controls input[type="range"] {
    background: none;
    border: none;
    color: #fff;
    accent-color: #b79027;
    cursor: pointer;
}
.controls input[type="range"] {
    flex: 1;
    margin: 0 10px;
}
.controls .volumeBar {
    max-width: 50px;
}