html {
    box-sizing: border-box;
    font-size: 62.5%;
    /** Reset para REMS - 62.5% = 10px de 16px **/
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #000;
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    line-height: 2;
}

img {
    max-width: 100%;
}

h1 {
    color: #fff;
    font-size: 5rem;
    text-align: center;
    text-transform: uppercase;
    padding-top: 2rem;
}

h2 {
    color: #fff;
    font-size: 4rem;
    text-align: center;
    margin: 2rem 0;
    text-transform: uppercase;
}

h3 {
    color: #fff;
    font-size: 1.5rem;
}

h4 {
    font-size: 3.5rem;
    text-align: center;
    text-transform: uppercase;
}

.card {
    background-color: #000;
    border: 0.2rem solid white;
    border-radius: 0.5rem;
}

.card:hover {
    transform: scale(1.03);
}

.bg-navbar {
    background-color: #000;
}

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: #000;
    list-style: none;
    font-weight: bold;
}

.text-line::before {
    content: "";
    display: block;
    width: 8rem;
    height: 0.5rem;
    background-color: rgba(12, 179, 20, 0.822);
    margin: auto auto 1rem auto;
}

.footer {
    background-color: #000;
    margin-top: 2rem;
    color: #fff;
}

.footer-line::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: rgba(12, 179, 20, 0.822);
    margin-top: 1rem;
}

.navegation {
    text-transform: uppercase;
    color: #fff;
}

.bg-header {
    background-image: url(../img/hero.jpg);
    background-position: center center;
    background-size: cover;
    height: 80vh;
}

.tittle-header {
    font-size: 7rem;
    padding: 8rem 0 0 4rem;
    color: #fff;
    text-align: left;
    font-family: "Lobster", cursive;
}

.submenu {
    position: relative;
}

.submenu #carrito {
    display: none;
}

.submenu:hover #carrito {
    display: block;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1;
    background-color: white;
    padding: 2rem;
    min-height: 40rem;
    min-width: 60rem;
}

.main-description {
    background-color: #000;
    color: #fff;
}

.imagen {
    width: 80rem;
}

.text-description {
    padding: 3rem;
}

.text-description h3 {
    font-size: 4rem;
}

.text-description p {
    font-size: 1.8rem;
}

.icon-cart {
    font-size: 2rem;
    padding-top: 1rem;
}

.text-navbar:hover {
    text-decoration: none;
    color: rgba(112, 238, 101, 0.822) !important;
}

.button-style {
    width: 3rem;
}

.return {
    text-transform: uppercase;
    margin-left: 2rem;
    color: white;
}