        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            list-style: none;
            text-decoration: none;
            border: none;
            outline: none;
            /* Normalizar Los Estilos Del Navegador Para Evitar Cnflictos De Estilos */
        }
        
        @font-face {
            font-family: Oswald-Light;
            src: url(/FON/oswald/Oswald-ExtraLight.ttf);
        }
        
        @font-face {
            font-family: chiller-mdl;
            src: url(/FON/chiller/chiller.ttf);
        }
        
        body {
            background-color: #F5F5F5;
            display: flex;
        }
        
        .contenedorIconoNombre {
            width: 50vw;
            min-height: 90vh;
            display: block;
            margin: auto;
            margin-top: 20px;
            margin-bottom: 20px;
            padding: 20px;
            box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
            background-color: #191919;
            border: 2px solid silver;
            border-radius: 10px;
        }
        
        .nombrePrincipal {
            text-align: center;
            font-family: chiller-mdl;
            font-weight: normal;
            font-size: 30px;
            color: silver;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        
        .iconoColmado7 {
            display: flex;
            margin: auto;
            margin-top: 20px;
            width: 65px;
            height: 65px;
            border-color: 2px solid silver;
            border-radius: 25px;
            overflow: hidden;
            filter: sepia(.10);
            transition: border-radius 1s;
        }
        
        .iconoColmado7:hover {
            filter: saturate(200%);
            border-radius: 35px;
        }
        
        .lineaDivisora {
            height: 1px;
            background-image: -webkit-linear-gradient(left, #f0f0f0, gray, #f0f0f0);
            margin: 20px;
        }
        
        .eslogan {
            font-family: Oswald-Light;
            font-weight: normal;
            font-size: 25px;
            text-align: center;
            color: silver;
        }
        
        .detalles {
            font-family: Oswald-Light;
            font-weight: normal;
            font-size: 20px;
            text-align: center;
            color: silver;
            margin: 0;
            letter-spacing: 0.5px;
        }
        
        .contenedorIrDeCompra {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
            border: 1px solid silver;
            border-radius: 10px;
            width: 200px;
            height: 40px;
            background-color: darkblue;
        }
        
        .contenedorIrDeCompra:hover {
            filter: saturate(200%);
            color: white;
        }
        
        .irDeCompras {
            font-family: Oswald-Light;
            font-weight: normal;
            font-size: 16px;
            color: silver;
            padding: 8px;
        }
        
        .carritoCompra {
            padding: 5px;
            width: 40px;
            height: 40px;
        }
        
        .contenedorRedesSociales {
            text-align: center;
            margin: 20px;
        }
        
        .imagenesRedesSociales {
            width: 40px;
            height: 40px;
            background-color: black;
            border: 1px solid silver;
            border-radius: 5px;
            filter: sepia(0.5);
            transition: border-radius 1s;
            margin: 2px;
        }
        
        .imagenesRedesSociales:hover {
            border-radius: 20px;
            filter: grayscale(50%);
        }
        /*----------------- RESPONSIVE -----------------*/
        
        @media (max-width: 1280px) {}
        
        @media (max-width: 1024px) and (min-width: 720px) {
            body {
                display: flex;
            }
            .iconoColmado7 {
                width: 70px;
                height: 70px;
                align-items: center;
                justify-content: center;
                text-align: center;
                margin: auto;
                margin-bottom: 10px;
            }
            .contenedorIconoNombre {
                margin: 10px;
                align-items: center;
                justify-content: center;
                text-align: center;
                width: 90vw;
            }
            .eslogan {
                font-size: 25px;
            }
            .detalles {
                font-size: 18px;
            }
        }
        
        @media (max-width: 720px) and (min-width: 460px) {
            body {
                display: flex;
            }
            .contenedorIconoNombre {
                width: 90vw;
                margin: 10px
            }
            .iconoColmado7 {
                width: 70px;
                height: 70px;
                align-items: center;
                justify-content: center;
                text-align: center;
                margin: auto;
                margin-bottom: 10px;
            }
            .eslogan {
                font-size: 20px;
            }
            .detalles {
                font-size: 14px;
            }
        }
        
        @media (max-width: 460px) {
            body {
                display: flex;
            }
            .contenedorIconoNombre {
                width: 90vw;
                margin: 10px;
            }
            .iconoColmado7 {
                width: 50px;
                height: 50px;
                align-items: center;
                justify-content: center;
                text-align: center;
                margin: auto;
                margin-bottom: 10px;
            }
            .eslogan {
                font-size: 20px;
            }
            .detalles {
                font-size: 14px;
            }
            .contenedorIrDeCompra {
                width: 150px;
            }
        }