@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
}

#myVideo {
  position: fixed;
  width: 100%;
}

.content {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.11);
  color: #f1f1f1;
  width: 500px;
  padding: 20px;
}

.content-two {
  position: absolute;
  top: 25%;
  /* background: rgba(0, 0, 0, 0.5); */
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

.image {
  width: 150px;
}

.content-three {
  position: absolute;
  top: 30%;
  /* background: rgba(0, 0, 0, 0.5); */
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.bb {
  border: cyan solid;
}

#myBtn:hover {
  background: #be0606;
  color: black;
}

@media only screen and (max-width: 600px) {
  .image {
    width: 80px;
  }

  #myVideo {
    width: auto;
  }

  .content {
    background-color: transparent;
  }
}
