@font-face {
    font-family: "HyliaSerif";
    src: url(../fuentes/HyliaSerif.otf);
  }
  
  html,
  body {
    text-align: justify;
    font-family: HyliaSerif;
    color: goldenrod;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: url(../Cursor/espadam.cur), auto;
    background-image: url(https://www.zelda.com/breath-of-the-wild/assets/img/patterns/black.jpg);
  }
  
  nav {
    border-top: goldenrod solid 4px;
    border-bottom: goldenrod solid 4px;
    position: fixed;
    top: 0;
    width: 100%;
    background-image: url(https://www.zelda.com/breath-of-the-wild/assets/img/patterns/black.jpg);
    padding: 10px 0;
    text-align: center;
    z-index: 1;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline-block;
    margin: 0 10px;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease-in-out;
  }
  
  nav ul li a {
    display: block;
    padding: 10px 20px;
    color: goldenrod;
    text-decoration: none;
    font-size: 30px;
  }
  
  nav ul li:hover {
    border-bottom-color: goldenrod;
    transform: translateY(-3px);
  }

  h1{
    text-decoration: underline goldenrod;
  }
  
  .titulo {
    text-align: center;
  }

  .img1 {
    border: 5px solid goldenrod;
    position: relative;
    float: left;
    margin: 15px;
    width: 10%;
    height: 800px;
  }
  
  .crono {
    position: relative;
    font-size: 30px;
  }

div{
    margin-left: 50px;
    margin-right: 50px;
    clear: both;
}

footer{
    text-align: center;
    font-size: 15px;
    color: goldenrod;
  }

      /* Estilo para tablets*/
      @media (max-width: 768px) {

        nav ul li {
            display: block;
            margin: 10px 0;
            border-bottom: none;
          }
        
          header {
            margin-bottom: 150px;
          }
          
          nav ul li a {
            font-size: 20px;
          }
    
        .img1{
          width: 100%;
          height: auto;
        }
        .crono {
            position: relative;
            float: left;
            font-size: 20px;
          }
          footer{
            font-size: 15px;
          }
    }
      /* Estilo para móvil */
      
      @media (max-width: 480px) {
    
        nav ul li {
            display: block;
            margin: 10px 0;
            border-bottom: none;
          }
        
          header {
            margin-bottom: 150px;
          }
          
          nav ul li a {
            font-size: 18px;
          }
    
        .img1{
          margin: 10px;
          width: 100%;
          height: auto;
        }
        .crono {
            position: relative;
            float: left;
            font-size: 15px;
          }
          footer{
            font-size: 10px;
          }
    }