* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(315deg, #b3cdd1 0%, #9fa4c4 74%);
  min-height: 100vh;
}

.container {
  width: 900px;
  max-width: 90%;
  display: flex;
}

.video {
  width: 80%;
  max-width: 700px;
  border: 5px solid white;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.speed {
  background: #efefef;
  width: 50px;
  display: flex;
  align-items: flex-start;
  margin: 20px;
  border-radius: 60px;
  box-shadow: 0 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.speed-bar {
  width: 100%;
  background: linear-gradient(-170deg, #2376ae 0%, #c16ecf 100%);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  color: white;
  height: 16.3%;
}
