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

html,
body {
  height: 100%;
  background-color: #333;
}

main {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 70%;
  position: absolute;
}

#videoAudio{
  max-width: 100%;
  position: relative;
}

.controller {
  position: absolute;
  bottom: 10px;
  text-align: center;
  background-color: white;
  border-radius: 10px;

  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}

.btn {
  width: 30px;
  margin: 0 5px;
  cursor: pointer;
}

.controllers{
  width: 20%;
}

.progress {
  width: 100%;
}

#progress{
  accent-color:black;
  display: inline-flex;
  width: 80%;
  position: relative;
}

input[type="range"]{
  accent-color:black;
  position: absolute;
  top: 3px;
}

.controlVol{
  background-color: white;
  width: 176px;
  height: 30px;
  transform: rotate(270deg);
  position: absolute;
  left: 40px;
  bottom: 120px;
  border-radius: 10px;

  display: none;
  justify-content: center;
  align-content: center;
}