

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}

.img-header {
  max-width: 200px;
  height: auto;
}

/* BODY STYLE */
.body-rrss {
  display: block;
  font-size: 40px;
  justify-content: center;
  gap: 100px;
  padding-top: none;
  font-family: "Agrandir";
  font-style: italic;
}

.social-icons {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  padding-top: 10px;
}

.social-icons a {
  margin: 0 15px;
  font-size: 24px;
  padding: 0;              /* antes: 80px */
  display: inline-block;   /* asegura cajas ajustadas al contenido */
}

.social-icons a:hover {
  color: #a70c0c;
}

.img-rrss {
  width: 100px;
  height: auto;
  cursor: pointer;
}

body {
  background-color: black;
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: grid;
  min-height: 100dvh;             /* antes: 100px */
  grid-template-rows: auto 1fr auto;  /* antes: auto lfr auto */
  text-align: center;
}


main {
  flex: 1;
}

/* FOOTER */
footer {
  background-color: #ff3131;
  color: white;
  text-align: center;
  padding: 20px;
  /* eliminado: bottom/top */
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


/* VIDEO */
/*
video {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}
*/
.config-video{
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;

}

.config-video > video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
    




/* FUENTES */

@font-face {
  font-family: "Anton";
  src: url(../fonts/Anton.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Agrandir";
  src: url(../fonts/Agrandir-Regular.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Agrandir";
  src: url(../fonts/Agrandir-ThinItalic.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-style: italic;
}

@font-face {
  font-family: "Cy Grotesk Key";
  src: url(../fonts/cy-grotesk-key-2.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Codec Pro";
  src: url(../fonts/Agrandir-Regular.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* media */

@media (max-width: 480px) {
  /*video {
    max-width: 100%;
    height: auto;
    border: none;
    display: block;
  }
  */
  .config-video{
    aspect-ratio: 9/12;
  }

  .body-rrss {
    text-align: center;
    font-size: 24px;
  }

  .img-rrss{
    height: 50px;
    width: auto;
  }
  footer {
    background-color: #ff3131;
    color: white;
    text-align: center;
    align-content: center;
    padding: 0;
  }
}

