*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.content{
    height: 75px;
    width: 100%;
    background-color: lavender;
    border-width: 5px;
    border-color: #000000;
    padding: 10px;
    align-content: center;
    text-align: center;
    font-size: x-large;
    font-family: 'Times New Roman', Times, serif ;
}
.products {
    display: grid;
    grid-template-columns: repeat(3, auto); /* 2 equal columns */
    gap: 3em;
    padding: 1em;
    margin: 0 3em;
    justify-content: center; /* Centers grid items */
}
.products img {
    width: 100%;
    cursor: pointer;
    border-radius: 2em;
    object-fit: cover;
    height: 28em; /* Take full width */
}