body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
.home-hero {
  width: 100%;
  height: 100%;
  background: #000;
}
.home-hero .home-hero-video {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home {
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-items: center;
  align-items: center;
}
.home .content {
  display: grid;
  grid-template-areas: "logo logo" "boton1 boton2";
  grid-template-columns: 300px 300px;
  max-width: 600px;
}
.home .content #logo {
  grid-area: logo;
}
.home .content .btn {
  background: #ff4500;
  color: #fff;
  display: block;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  width: auto;
  border-radius: 3px;
  line-height: 20px;
  font-size: 1.2em;
  transition: all 0.5s ease;
}
.home .content .btn:hover {
  background: #cc3700;
}
.home .content #btnvideos {
  grid-area: boton1;
}
.home .content #btnaudios {
  grid-area: boton2;
  padding-right: 20px;
}
@media all and (max-width: 480px) {
  .home .content {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr;
  }
}
