/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    font-family: 'MiFuente', serif;
    font-size: x-large;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    height: 110%;
    border: none;
}
.go-to-another-page {
    position: fixed;
    top: 15px;  /* Posiciona el enlace cerca de la parte superior */
    left: 15px;  /* Posiciona el enlace cerca del borde izquierdo */
    color:white;
    text-decoration: none;
  }
   
  @font-face {
    font-family: 'MiFuente'; /* Nombre personalizado para la fuente */
    src: url('ChamberiText-Regular.woff') format('truetype'); /* Ruta relativa al archivo de la fuente */
    font-weight: normal; /* Opcional: define el peso de la fuente */
    font-style: normal; /* Opcional: define el estilo de la fuente */
}