html, body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    @font-face {
      font-family: Noto Sans;
      src: url(NotoSans.ttf);
    }
    height: 100%;
    display: flex;
    flex-direction: column;
    background: black;
}


#venta {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #FFFFFF;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  padding: 5px 15px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#venta p {
  margin: 10px 0;
  font-size: 14px;
  color: #000;
}

#venta p strong {
  font-weight: bold;
  word-wrap: break-word;
}

#video {
  width: 100%;
  height: 100vh;
}

#boton {
  position: absolute;
  align-self: center;
  bottom: 25px;
  width: 300px;
  height: 50px;
  border-radius: 50px;
  background: white;
  border: 1px solid #d4d4d4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  font-weight: bold;
}

#boton:hover {
  background: #f1f1f1;
}

#boton:active {
  background: #e2e2e2;
}

#SEO {
  position: absolute;
  font-size: 1px;
  color: #00000000;
}

@media (max-width: 1100px) {
  #venta {
    top: 25px;
    align-self: center;
    bottom: unset;
    right: unset;
  }

  #boton {
    bottom: 120px;
  }
}