body {
    margin: 0px;
    width: 100%;
    font-family: Quicksand;
    font-weight: 600;
}



body * {
    margin: 0px;
}


main {
    margin-top: calc(var(--header-top-height) + var(--header-bottom-height));
}

h2 {
    font-size: 20px;
}

#products {
    padding: 53px 211px;
    padding-bottom: 112px;
    display: flex;
    flex-direction: column;
    gap: 31px;
}



.cover {
    height: 520px;
    background: silver;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(https://images.pexels.com/photos/582436/pexels-photo-582436.jpeg?auto=compress&cs=tinysrgb&w=600);
    background-size: cover;
    background-position: 0% 73%;
    color: white;
    background: url(https://images.pexels.com/photos/1529034/pexels-photo-1529034.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    /* background-size: cover; */
    background-position: 0% 38%;
    background: url(https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: 0% 78%;
    background-size: cover;
    background: url(https://images.unsplash.com/photo-1616486029423-aaa4789e8c9a?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    /* background-position: 0% 52%; */
    /* background: url(https://images.unsplash.com/photo-1560185893-a55cbc8c57e8?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D); */
    background-position: 0% 48%;
    background: url('/pages/home/images/cover.jpg');
    background-position: 0% 66%;
    background-size: cover;
}


.cover .text-area {
    color: black;
    background: white;
    width: 465px;
    padding: 40px;
    border-radius: 12px;
    position: absolute;
    left: 340px;
    border: 1px solid #000000a3;
}

h1 {
    font-family: Google Sans Flex;
    font-size: 28px;
    line-height: 37px;
    letter-spacing: 0.3px;
    width: 378px;
    
}

.cover .text-area p {
    font-size: 17px;
    margin-top: 21px;
    display: block;
    line-height: 24px;
    width: 466px;
    color: #717171;
    font-weight: 600;
    letter-spacing: 0.4px;
}


.cover .text-area a:first-of-type {
    background: #5d36ff;
    color: white;
    padding: 15px 13px;
    text-decoration: none;
    border-radius: 9px;
    margin-top: 39px;
    display: inline-block;
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
   
}



.cover .text-area a:last-of-type {
    text-decoration: none;
    color: #0049ffc4;
    display: block;
    text-align: center;
    margin-top: 22px;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 17px;
    
}




#products > div {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
    align-items: baseline;
    }

#products a {
    user-select: text;
    text-decoration: none;
}

.product {
    padding: 10px;
    font-size: 16px;
    font-family: 'Inter';
    font-family: 'Quicksand';
    font-weight: 600;
    padding: 15px;
    color: #000000d6;
    position: relative;
    border: 1px solid #00000017;
    border-radius: 10px;
}

.product h3 {
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: inherit;
    font-size: 15px;
    color: #4b4b4b;
    
}

.product h3::first-letter {
    text-transform: uppercase;
}

.product p, .product h3 {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product .price {
    font-size: 15px;
    color: #0000007d;
}

.product time {
   
    display: block;
    font-size: 13px;
    margin-top: 13px;
    margin-bottom: 8px;
    color: #0000008c;
    display: none;
}

.product img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}