
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
body{
    background-color: rgb(15, 15, 15);
    position: relative;
    display: grid;
    margin: 0;
    min-height: 250vh;
    grid-template-rows: auto 1fr auto;
    font-family: 'Playfair Display', serif;
}
.btnpag{
    display: flex;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20rem;
}

.pag2{
    width: 50px;
    height: 30px;
    background-image: radial-gradient(circle at -7.92% 90.56%, #ffff99 0, #ffff8a 16.67%, #fffd7b 33.33%, #d8d86c 50%, #a7b35d 66.67%, #7f9251 83.33%, #607646 100%);
    border: none;
    border-radius: 20px;
    color: #000000;
    font-family: Altoner;
    font-size: 20px;
    text-align:center;
    text-decoration: none;
    padding-top: 8px;
    margin-right: 10px;
    margin-top: 20px;
}
.pag2:hover{
    background-image: radial-gradient(circle at 50% -20.71%, #a3a7ff 0, #7a8ffc 25%, #3c78f2 50%, #0063e8 75%, #0051de 100%);
    scale: 1.1;
    transition: .2s;
}
.articulos-title{
  background-image:url(../Images/museo-cairo-3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  margin-bottom: 0px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 0px;
  padding: 100px 0px 100px 0px;
  
}
.menu-icono{
  display: none;
}

body::-webkit-scrollbar{
  width: 20px;
}
body::-webkit-scrollbar-track{
  background: rgb(36, 36, 36);
}
body::-webkit-scrollbar-thumb{
  background: rgb(22, 22, 22);
}
.pag{
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  margin-right: 0;
  border: 0;
  border-top: 1px solid #ffffff;
}
h2{
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  letter-spacing: 1px;
  padding-top: 10px;
  color: #ffffff;
}
.container{
  width: 85%;
  max-width: 850px;
  margin: 0 auto;
}
.header{
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  background: #000000;
  color: #ffffff;
  padding: 1rem 0;
}
  .header a{
    color:#ffffff;
    text-decoration: none;
  }
.logo-nav-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.navigation ul{
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
  .navigation ul li{
    display: inline-block;
  }
    .navigation ul li a{
      display: block;
      padding: 0.5rem 1rem;
    }  
    .navigation ul li a:hover{
      color: #D9C359;
      text-decoration: underline;
      transition: 0.5s;
    }
    
.footer{
  background: #000000;
  color: #ffffff;
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
  max-width: 100%;
}
  .footer a{
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    text-decoration: none;

  }
    .footer a:hover{
      color: #D9C359;
      text-decoration: underline;
      transition: 0.5s;
    } 
    @media only screen and (max-width: 768px) {
      .navigation ul li{
        display: block;
      }
        .navigation ul li a{
          display: block;
          padding: 0.5rem 1rem;
          text-align: center;
        }  
        .navigation ul li a:hover{
          background-color: #894924;
          color: #ffffff;
          text-decoration: none;
          transition: all 1s;
        }
        .navigation ul{
          display: none;
        }
        .navigation ul.show{
          display: block;
        }
      .logo{
        width: 30%;
      }
      
      .menu-icono{
        display: block;
        cursor: pointer;
        
      }
  }  