* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
hr {
    margin: 1rem 0;
}
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.8);
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav a {
    font-family: "Anonymous Pro", monospace;
}

.nav:hover {
    background: rgba(101, 101, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 48, 142, 0.2);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: rgb(119, 0, 255);
    transform: scale(1.05);
}

.navegador {
    display: flex;
    list-style: none;
}

.navegador a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navegador a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(102, 0, 255), #7a5cff);
    transition: width 0.3s ease;
}

.navegador a:hover::after {
    width: 100%;
}

.navegador a:hover {
    color: rgb(102, 0, 255);
}
#portada {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.682);
    font-size: 2rem;
}

#introduccion_morado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8rem 0;
    z-index: -1;

}

#introduccion_morado img {
    border-radius: 50px;
    border: 5px solid rgba(255, 255, 255, 0.8);
}
.morado {
    background: rgba(128, 0, 128, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    color: rgb(128, 0, 128);
    box-shadow: 8px 8px 12px rgba(128, 0, 128, 0.2);
    margin: 0 10vw;
    align-content: center;
    transition: all 0.3s ease;
}
.morado:hover {
    background: rgba(194, 148, 194, 0.2);
    box-shadow: 12px 12px 16px rgba(128, 0, 128, 0.3);
    transform: translateY(-5px);
    transform: scale(1.05);
}
#carta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 4rem ;
}
 #carta_titulo {
    color: black;
    text-align: center;
    margin-bottom: 5rem;
}
.crd-1 {
    margin: 2rem;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    list-style: none;
    transition: all 0.3s ease;
}
.crd-1:first-child {
    background: rgba(117, 117, 117, 0.044);
    box-shadow: 8px 8px 12px rgba(255, 0, 0, 0.2);

    margin: 0 3rem;
}

.crd-1:last-child {
    background: rgba(117, 117, 117, 0.044);
    box-shadow: 8px 8px 12px rgba(0, 34, 255, 0.2);
    margin: 0 3rem;
}
.crd-1:first-child h3{
    color: rgb(255, 0, 0);
    font-size: 1.8rem;
}
.crd-1:last-child h3{
    color: rgb(0, 0, 255);
    font-size: 1.8rem;
}
.crd-1 p {
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
}
.crd-1 li {
    margin: 0.5rem 0;
    padding: auto;
}
.crd-1 img {
    width: 100%;
    border-radius: 8px;
    height: 450px;
    margin-top: 1rem;
}
.crd-1:first-child:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 16px rgba(255, 20, 20, 0.432);
}
.crd-1:last-child:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 16px rgba(20, 87, 255, 0.432);
}
footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}
#introduccion_morado {
        @media (width < 1200px)  {
                grid-template-columns: 1fr;
            }
        justify-items: center;
    }
#carta {
        @media (width < 1200px)  {
                grid-template-columns: 1fr;
            }
        justify-items: center;
    }
#carta {
    ul {
      list-style: none;
      padding: 0.5;
      margin: 2rem;
      background-color: rgba(222, 222, 222, 0.171);
    }

    li {
      background: rgba(255,255,255,0.1);
      margin: 6px 0;
      padding: 8px;
      border-radius: 8px;
    }

    li:hover {
      background: rgba(255,255,255,0.2);
      cursor: pointer;
    }
}
@media screen and (max-width: 1500px) {
    .introduccion {
        align-items: center;
        padding:2rem;
    }
    #introduccion_morado img {
        margin: 1rem 0 0 2rem;
    }
    .morado {
        margin: 1rem 2rem;
    }
    #carta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    hr {
    margin: 1rem 0;
    color: black;
}
}
@media screen and (max-width: 800px) {
      header {
        position: relative;
    }
    nav {
        flex-direction: column;
        text-align: center;
    }
    .nav{
        padding: 0;
    }
    .navegador {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .introduccion {
        font-size: 1.4rem;
    }
    #introduccion_morado img{
        display: none;
    }
    .morado {
        max-width: 20rem;
    }
    #carta_titulo {
        font-size: 1.8rem;
    }
    .crd-1 img {
        height: auto;
    }
    .crd-1 p, li{
        font-size: 1rem;
    }
    footer {
        font-size: 0.8rem;
    }
    
}