@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif; }

/* HeroImage */
.heroImage {
  width: 100%;
  height: 91vh;
  background-image: url("../img/heroImage.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center; }
  .heroImage h1 {
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    width: 100%;
    text-align: center; }

@media screen and (min-width: 768px) {
  .heroImage h1 {
    transition: all 550ms ease-in; }
  .heroImage h1:hover {
    transform: scale(1.1); } }

/* Opciones de reproducción */
.options {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .options article {
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center; }
  .options .YTPlayer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px; }

@media screen and (min-width: 768px) {
  .options {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly; } }
