/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Times, serif;
   background-image: url("stars.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
a,
a:link,
a:visited,
a:hover,
a:active {
  color: #ffffff !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.video {
  width: 100%;
  max-width: 500px;      /* desktop */
  aspect-ratio: 16 / 9;  /* 500 x 281 aprox */
  margin: 2rem 0;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .video {
    max-width: 100%;   /* ocupa todo el ancho del teléfono */
  }
}
  
}