.home {
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 11rem;
    padding-bottom: 0;
}

.products {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products .productList {
    padding: 1rem;
    display: grid;
    grid-template-columns: 250px 250px 250px 250px;
    gap: 20px;
    width: 100%;
    justify-content: space-evenly;
}

.products .productList:first-child {
    margin-bottom: 2rem;
}

.products .productList .box {
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
    max-width: 250px;
    }

.products .productList .box:hover {
    outline-offset: 0rem;
    outline: var(--outline-hover);
}

.products .productList .box img {
    height: 15rem;
}

.products .productList .box h3 {
    font-size: 1.7rem;
    color: var(--black);
    margin: 20px 0 10px 0;
}

.products .productList .box .price {
    font-size: 1.5rem;
    color: var(--light-color);
    padding: .5rem 0;
}

.products .productList .box .stars i {
    font-size: 1.7rem;
    color: var(--orange);
    padding: .5rem 0;
}