@font-face {
  font-family: 'Friz-Quad';
  src: url('https://lovelyamy.com.mx/esp/_include/font/QTFrizQuad.woff2') format('woff2'), /* Navegadores modernos */
       url('https://lovelyamy.com.mx/esp/_include/font/QTFrizQuad.woff') format('woff');   /* Navegadores antiguos */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Mejora el rendimiento de carga */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:"Friz-Quad", sans-serif;
  font-size: 25px;
  letter-spacing: 5px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#myVideo {
  min-width: 100%; 
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100; /* Lo envía detrás del contenido */
  transform: translate(-50%, -50%); /* Centrado exacto */
  object-fit: cover; /* Clave para que cubra todo sin deformarse */
}

.content {
  position: fixed;
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;     /* Centrado vertical */
  height: 100vh;           /* Altura total de la ventana */
  bottom: 0;
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

table { 
    text-align: center; 
    padding: 0px;
}

th, td {
  border: 0px;
  padding: 0px;
}

.title {
    color:red;
    font-family:"Friz-Quad", sans-serif;
    font-size: 60px;
    text-shadow: 0px 0px 4px red;
}



@media screen and (max-width:500px) {
.title { font-size: 40px; padding-top:120px; }
}


a {
    font-family:"Friz-Quad", sans-serif;
    font-size: 25px;
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 4px #000;
}

a:hover {
  color: red;
}

@media screen and (max-width:500px) {
a { font-size: 20px; }
}
