@font-face {
  font-family: 'MiFuente';
  src: url('fonts/Aspekta-500.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'MiFuente', Helvetica, Arial, sans-serif;
}
  
  #container {
    text-align: center;
    width: 100%;
    background-color: #ffffff;
  }
  
  nav {
    position: fixed;
    top: 40px;
    right: 0;
    width: 100%;
    color: rgb(0, 0, 0);
    padding: 0px;
    text-align: left;
    z-index: 1000;
    height: 50%;
    padding-left: 50%;
  }
  
  nav ul li {
    list-style: none;
    margin: 10px;
    line-height: 200px;
    mix-blend-mode: difference;
    z-index: 1000;
  }
  
  a {
    color: rgb(0, 0, 0);
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
    text-transform: none;
    width: fit-content;
  }
  
  a:hover {
    color: #ffd5f7;
    text-decoration: none;
    mix-blend-mode: difference;
    z-index: 1000;
  }
  
  hr {
    width: 0%;
  }
  
  .clear {
    clear: both;
  }
  
  img {
    filter: grayscale(0);
    transition: filter 1s ease;
  }
  
  img:hover {
    filter: grayscale(20%);
  }
  
  header {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    color: white;
    padding: 0px;
    text-align: center;
    z-index: 1000;
  }
  
  /* Imagen rotatoria opcional */
  .rotating-image {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 80px;
    height: auto;
    animation: spin 3s linear infinite;
  }
  
  /* Gif anclado */
  .gif-anclado {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    z-index: 9999;
    pointer-events: none;
  }
  
  .gif-anclado img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  