@import url("color-animate.css");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
}

#myVideo {
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  object-fit: cover;
  position: fixed;
  inset: 0px;
}

.content {
  background: rgba(0, 0, 0, 0.607);
  position: fixed;
  inset: 0;
}

.content-two {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -200%);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.784);
  display: flex;
  justify-content: center;
}

.header-div {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.image {
  width: 200px;
}

.content-three {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-47.5%, -50%);
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.bb {
  border: rgb(121, 2, 2) solid;
}

#myBtn:hover {
  background: #be0606;
  color: black;
}

@media only screen and (max-width: 600px) {
  .image {
    width: 50px;
  }

  .content {
    background-color: transparent;
  }
}
