:root{
    --primary-color: rgb(255, 224, 50); /* Color primario de la página */
    --gold-h1: linear-gradient( /* Gradiente para el título principal (h1) */
    160deg,
    #9e7b28 0%,
    #ffe7a9 25%,
    #cc9b29 30%,
    #ffc637 50%,
    #ffe7a9 70%,
    #e6ad32 85%,
    #c09226 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  html {
    animation: none;
  }
}

body {
  background-color: rgb(15, 15, 15);    
}

header{
    font-family:"Cinzel Variable",system-ui;
    font-size: 1.3rem;
    margin-top: 50px;
}

header img{
    border:3px solid var(--primary-color);
    border-radius: 100%;
    width: 60px;
    transition: ease .3s transform;
}

header img:hover{
    transform: scale(1.1);
}

ul{
    place-items:center;
    gap: 20px;
}

a.nav-link{
    border: 3px solid var(--primary-color);
    border-radius:5px;
    background: var(--gold-h1);
    background-clip: text;
    color: transparent;
    transition: ease .3s transform;
}

a.nav-link:hover{
    transform: scale(1.1);
}

section{
    margin-top: 50px;  
}

.card{
    width:27rem;
    min-height:9rem;
    border:4px solid var(--primary-color);
    background-color:rgb(15,15,15);
}

h5.card-title{
    font-family:"Cinzel Variable",system-ui;
    background: var(--gold-h1);
    background-clip: text;
    color: transparent;
    font-size: 1.4rem;
}

h6.card-subtitle{
    font-size:1.3rem;
    color:rgb(180, 180, 180) !important;
}

p{
    font-family: "Poppins",system-ui;
    color: white;
}

.col{
    place-items: center;
    min-height: 170px;
}

.wsp{
    position: fixed;
    bottom: 20rem;
    left: 50%;
    transform: translateX(-50%);
}


@media screen and (width < 416px) {
 body.container {
    width: 100vw;
 }
  header.container {
    max-width: fit-content;
  }
  header .nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 20px !important;
    padding: 0;
    margin: 0;
  }

  ul{
    font-size: 1.2rem;
    text-align:center;
    gap: 50px;
    width:250px;
}

header img{
    border:2px solid var(--primary-color);
}

a.nav-link{
    border: 2px solid var(--primary-color);
    border-radius:5px;
}

li.nav-item{
    width:12rem;
    height:5rem;
}

h5.card-title{
    font-size: 1.2rem;
}

h6.card-subtitle{
    font-size:1rem;
    color:rgb(180, 180, 180) !important;
}

p{
    font-size:0.9rem;
}

.card{
    border:2px solid var(--primary-color);
    width: 18rem;
    min-height: 9rem;
}
.col{
    width: 100%;
}
section.container{
    width: 200px;
}
.row-cols-2{
    display: grid;
    justify-content:center;
    grid-template-columns: 1fr;
    min-height: 200px;
    gap:20px;
}

.wsp{
    width: 64px;
    left: 85%;
    bottom: 5%;
}
}