* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /*TAMAÑO DE FUENTE RELATIVO AL NAVEGADOR*/
    font-size: 62.5%;
    /*FAMILIA ELEGIDA POR DEFECTO*/
    font-family: 'Barlow' , sans-serif;
    /*COLOR DE TEXTO BASE*/
    color: #2b2b2b;
}

ul , ol {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: white;
}

/*NAVEGACIÓN*/
header nav {
    background-color: rgb(77, 77, 77);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 50px 0 50px;
    position:fixed;
    z-index: 1000;
    width: 100%;
}
header nav ul {
    display: flex;
    align-items: center;
}

nav .logo img {
    width: 250px;
    height: 50vh;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
    font-size: 15px;
}

header nav ul img {
    width: 30px;
}

/*BANNER*/
#banner {
    background-image: url(multimedia/funkos-banner.webp);
    background-attachment: fixed; /*FIJA LA IMAGEN SOBRE SU CAJA*/
    background-repeat: no-repeat; /*QUE NO SE DUPLIQUE PARA OCUPAR EL ESPACIO*/
    background-size: cover; /*COBERTURA DE IMAGEN*/
    background-position: center; /*CENTRA LA IMAGEN*/
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 100px;
    color: white;
}

#banner h1 {
    font-size: 50px;
}
#banner p {
    font-size: 20px;
}
#banner button a {
    font-size: 15px;
    color: black;
}
#banner button {
    margin-top: 40px;
    background-color: white;
    font-weight:bold;
}

/*SECTIONS DE CATÁLOGOS*/
#linea-horizontal {
    border: solid 1px rgb(255, 0, 0);
    width: 700px;
}

#star-wars , #pokemon , #harry-potter{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.img-baby-yoda , .img-vulpix , .img-harry-potter {
    width: 350px;
}

main .contenido-star-wars , .contenido-pokemon , .contenido-harry-potter{
    display: flex;
    flex-direction: column;
}

.contenido-star-wars .contenido-pokemon .contenido-harry-potter , button, #linea-horizontal {
    margin-top: 18px;
}

#star-wars h1 , #pokemon h1 , #harry-potter h1 {
    font-size: 30px;
}
#star-wars p , #pokemon p , #harry-potter p {
    font-size: 18px;
}

#star-wars #pokemon #harry-potter , button {
    width: 155px;
    height: 35px;
    border-radius: 20px;
    background-color: rgb(40, 40, 75);
    border: none;
    font-size: 15px;
}

/*EDICIÓN CARRUSEL*/
#carrusel-tienda {
    display: flex;
    overflow-y: auto;
    padding: 16px;
}    

.card {
    margin-right: 10px;
    position: relative;
}
.card h2 {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 0, 0, 0.726);
    color: white;
    width: 70px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card img {
    width: 400px;
    object-fit: cover;
    height: 400px;
}

.card-cuerpo h4 {
    font-size: 14px;
    color: #2b2b2b9d;
}
.card-cuerpo h5 {
    margin-top: 5px;
    font-size: 20px;
    color: black;
}
.card-cuerpo p {
    margin-top: 8px;
    font-size: 12px;
}
.card-cuerpo .precio {
    color: #2b2b2be1;
    font-weight: bold;
}
.card-cuerpo .cuotas {
    color: rgb(0, 110, 255);
    font-weight: bold;
}


/*EDICIÓN DEL FOOTER*/
footer {
    width: 100%;
    height: 180px;
    color: white;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    background-color: rgba(4, 18, 44, 0.767);
    border-top: 2px solid rgb(80, 74, 74);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px 0 80px;
}

footer img {
    width: 100px;
}

footer ul li, a{
    font-size: 13px;
    margin: 15px;
}

footer .copyright {
    margin-top: 100px;
    font-size: 11px;
}