@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap&#39');

body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #3c484e;
    font-family: 'Open Sans', sans-serif;
}


.Header-main {
    display: grid;
    grid-template-rows: 50px 3fr;
    grid-template-columns: 1fr;
    justify-content: space-between;
    align-items: center;
}


.Header-main .Header-icons-container {
    background-color: #f3f3f3;
}

.Header-icons-container {
    display: flex;
    justify-content: space-between;
}

.Icons img:first-child {
    width: 25px;
    padding: .5em;
}

.containerUser {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.containerCoin{
    display: flex;
    align-items: center;
    background-color: rgba(95, 96, 97, 0.244);
    padding: 0px 5px 0px 10px;
    border-radius: 20px;
}

.containerCoin span{
    font-size: 14px;
}
.containerCoin img {
    width: 20px;
    padding: .5em;
}

.user {
    font-size: 14px;
    padding: .5em;
}

/* .Header-main .Header-icons-container .Icons{
    width: 300px;
    height: auto;
    display: flex;
    justify-items: flex-end;
    align-items: center;
    justify-content: space-between;
    justify-self: end;
    margin-right: 50px;
} */



.Header a {
    text-decoration: none;
    color: #ffffff;
}

.Header h1 {
    font-size: 45px;
    margin-top: -200px;
    margin-left: 50px;
}

.Header-main .Header-encabezado {
    display: grid;
    margin-bottom: 2em;
}

.Header-main .Header-encabezado img {
    max-width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.Main {
    padding: 10px;
    grid-template-columns: minmax(auto, 976px);
    display: grid;
    justify-content: center;
}

.Products {
    padding: 1.5em;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
    grid-row-gap: 1.5em;
    display: grid;
}


.Products-items {
    text-decoration: none;
    box-shadow: 8px 14px 38px rgba(39, 44, 49, .06), 3px 3px 8px rgba(39, 44, 49, .03);
    border-radius: 5px;
    margin: 0 0 20px 0;
    display: block;
    animation-duration: 2s;
    animation-name: fade;
}

.Products-items img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.Products-items a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    text-align: center;

}

.Arrow-left img {
    margin-left: 1em;
    width: 35px;
}

.Products-inner {
    grid-template-columns: 1fr 2fr;
    grid-gap: 1.5rem;
    grid-row-gap: 1.5em;
    display: grid;
    align-items: center;
    padding: 5em;
}

.Products-card {
    text-decoration: none;
    box-shadow: 7px 7px 7px rgba(39, 44, 49, .06), 8px 8px 8px rgba(39, 44, 49, .03);
    border-radius: 5px;
    margin: 20px 20px 20px 20px;
    display: block;
    animation-duration: 2s;
    animation-name: fade;
}

.Product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.Product-card h2 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #000000;
}

.Product-card h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 30px;
    text-decoration: none;
    text-align: left;
    color: #000000;
}


@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.Main-loading {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}