*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    display: inline;
    background-color: black;
}

.home {
    position: relative;
    z-index: -100;
    display: block;
  }

video {
  object-fit: cover;
  position: fixed;
  width: 100%;
  height: auto;
}

.botones{
    flex-wrap: wrap;
    text-align: center;
    padding-top: 40%;
}

.boton{
  background-color: #5f0000;
  color: rgb(143, 143, 143);
  width: 100px;
  height: 50px;
  border: #5f0000;
  border-radius: 10px;
  font-size: 20px;
}

.boton+.boton{
  margin-left: 20%;
}

.boton:hover{
    transform: scale(1.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 16px #4b0000;
}